/* =========================================
   Hotel K-Rose — Landing Page Stylesheet
   ========================================= */

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

html,
body {
  height: 100%;
}

body {
  background: #1E3374;
  font-family: sans-serif;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__overlay--tint {
  background: rgba(30, 51, 116, 0.25);
}

.hero__overlay--bottom {
  background: linear-gradient(0deg,
      #1E3374 0%,
      rgba(30, 51, 116, 0) 40%);
}

.hero__overlay--top {
  inset: 0 0 auto 0;
  height: 192px;
  background: linear-gradient(180deg,
      #1E3374 0%,
      rgba(30, 51, 116, 0) 100%);
  mix-blend-mode: multiply;
}

/* Decorative right images */
.hero__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero__deco-rotated {
    position: absolute;
    width: 380px;
    top: 7%;
    right: 23%;
    transform-origin: center center;
}

.hero__deco-panel {
    position: absolute;
    bottom: 5px;
    right: 16rem;
    width: 49%;
    object-fit: cover;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1.5rem;
  width: 100%;
  text-align: center;
}

.hero__logo {
  width: clamp(107px, 14vw, 107px);
  height: auto;
  display: block;
  margin-bottom: clamp(2rem, 5vh, 4rem);
}

.hero__subtitle {
  color: #ffffff;
  font-family: 'Cormorant Upright', serif;
  font-weight: 300;
  font-size: clamp(13px, 1.6vw, 22px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}

.hero__heading {
  color: #ffffff;
  font-family: 'Aboreto', sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 8.5vw, 150px);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

/* Bottom-left image cards */
.hero__cards {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 290px;
  height: 225px;
  pointer-events: none;
}

.hero__card-bg {
  position: absolute;
  width: 320px;
  height: 225px;
  left: -80px;
  top: 0;
  object-fit: cover;
}

.hero__card {
  position: absolute;
  width: 210px;
  height: 158px;
  left: 0;
  top: 23px;
  object-fit: cover;
}

/* ══════════════════════════════════════════
   ABOUT US SECTION
══════════════════════════════════════════ */

.about {
  position: relative;
  background: #1E3374;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
}

/* Left decorative images */
.about__left-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 290px;
  height: 225px;
  pointer-events: none;
}

.about__left-bg {
  position: absolute;
  width: 320px;
  height: 225px;
  left: -80px;
  top: 0;
  object-fit: cover;
}

.about__left-card {
  position: absolute;
  width: 210px;
  height: 158px;
  left: 0;
  top: 0;
  object-fit: cover;
}

/* Right decorative images */
.about__right-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 321px;
  height: 275px;
  pointer-events: none;
}

.about__right-bg {
  position: absolute;
  width: 449px;
  height: 276px;
  right: -60px;
  bottom: 0;
  object-fit: cover;
}

.about__right-card {
  position: absolute;
  width: 335px;
  height: 252px;
  right: 0;
  bottom: 0;
  object-fit: cover;
}

/* Centered content */
.about__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1238px;
  margin: 0 auto;
}

.about__label {
  color: #ffffff;
  font-family: 'Cormorant Upright', serif;
  font-weight: 300;
  font-size: clamp(13px, 1.6vw, 22px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.about__heading {
  color: #ffffff;
  font-family: 'Cormorant Upright', serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1.02;
  text-transform: capitalize;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Cormorant Upright', serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 13px 44px;
  border: 2px solid rgba(255, 255, 255, 0.30);
  border-radius: 24.819px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.about__btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ========================================
   Global Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}

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

/* ========================================
   Explore Rooms Section
   ======================================== */
 .explore-rooms-section {
  position: relative;
  overflow: hidden;
  background-color: #f5eee0;
  padding: 3.5rem 1.25rem;
}

@media (min-width: 640px) {
  .explore-rooms-section {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .explore-rooms-section {
    padding: 6rem 2rem;
  }
}

/* Background texture */
.background-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1647px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 135px;
    padding-right: 135px;
  }
}

/* ========================================
   Section Title
   ======================================== */
.section-title {
  font-family: "Cormorant Upright", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 7vw, 4.375rem);
  color: #1e3374;
  text-align: center;
  text-transform: capitalize;
  line-height: 108%;
  margin-bottom: 3.5rem;
  letter-spacing: 0.5px;
}

@media (min-width: 640px) {
  .section-title {
    margin-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    margin-bottom: 6rem;
  }
}

/* ========================================
   Rooms Grid
   ======================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .rooms-grid {
    gap: 3rem;
    margin-bottom: 6rem;
  }
}

@media (min-width: 1280px) {
  .rooms-grid {
    gap: 4rem;
  }
}

/* ========================================
   Center Feather (Desktop Only)
   ======================================== */
.center-feather {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  z-index: 10;
  pointer-events: none;
  user-select: none;
  width: clamp(120px, 12vw, 220px);
}

@media (min-width: 640px) {
  .center-feather {
    display: block;
  }
}

.center-feather img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========================================
   Room Card
   ======================================== */
.room-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ========================================
   Room Title
   ======================================== */
.room-title {
  font-family: "Cormorant Upright", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 3.125rem);
  color: #1e3374;
  text-transform: capitalize;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-align: left;
}

.room-title-right {
  text-align: right;
}

/* ========================================
   Room Image Area
   ======================================== */
.room-image-area {
  position: relative;
  flex: 1;
  margin-top: 5rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .room-image-area {
    margin-top: 6rem;
  }
}

@media (min-width: 1024px) {
  .room-image-area {
    margin-top: 7rem;
  }
}

@media (min-width: 1280px) {
  .room-image-area {
    margin-top: 8rem;
  }
}

/* Decorative swirls */
.swirl-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 5;
}

.swirl-b,
.swirl-a {
  position: absolute;
  width: 70%;
  max-width: 260px;
  object-fit: contain;
}

.swirl-b {
  opacity: 0.8;
}

.swirl-a {
  width: 55%;
  max-width: 200px;
}

/* Pill thumbnail */
.pill-thumbnail {
  position: absolute;
  top: 0;
  width: clamp(80px, 10vw, 140px);
  aspect-ratio: 4 / 7;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 20;
  border-radius: 9999px;
  flex-shrink: 0;
}

.pill-left {
  left: clamp(1rem, 5vw, 1.5rem);
}

.pill-right {
  right: clamp(1rem, 5vw, 1.5rem);
}

.pill-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main image wrapper */
.main-image-wrapper {
  overflow: hidden;
  border-radius: clamp(1rem, 1.5vw, 1.5rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.main-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ========================================
   Room Details (Name + Price)
   ======================================== */
.room-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: flex-start;
}

.room-details-right {
  align-items: flex-end;
}

/* Room name */
.room-name {
  font-family: "Cormorant Upright", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  color: #1a1a1a;
  text-transform: capitalize;
  line-height: 108%;
  text-align: left;
}

.room-name-right {
  text-align: right;
}

/* Price section */
.price-section {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}

.price-section-right {
  flex-direction: row-reverse;
}

.price {
  font-family: "Sora", -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.5vw, 1.65rem);
  color: #1e3374;
  line-height: 141%;
  letter-spacing: 0.04em;
}

.price-unit {
  font-family: "Sora", -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 300;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #353535;
  line-height: 141%;
  letter-spacing: 0.04em;
}

/* ========================================
   Responsive Fine-tuning
   ======================================== */

/* Small screens (mobile) */
@media (max-width: 639px) {
  .room-title {
    font-size: 1.875rem;
  }

  .room-name {
    font-size: 1.25rem;
  }

  .price {
    font-size: 1.125rem;
  }

  .price-unit {
    font-size: 0.875rem;
  }

  .main-image-wrapper {
    border-radius: 1rem;
  }
}

/* Medium screens (tablet) */
@media (min-width: 640px) and (max-width: 1023px) {
  .room-title {
    font-size: 2rem;
  }

  .room-name {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.25rem;
  }

  .price-unit {
    font-size: 0.95rem;
  }

  .main-image-wrapper {
    border-radius: 1.25rem;
  }
}

/* Large screens (desktop) */
@media (min-width: 1024px) {
  .room-title {
    font-size: 3.125rem;
  }

  .room-name {
    font-size: 1.875rem;
  }

  .price {
    font-size: 1.65rem;
  }

  .price-unit {
    font-size: 1rem;
  }

  .main-image-wrapper {
    border-radius: 1.5rem;
  }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Heart of Rajkot — Section Styles
   Fonts: Cormorant Upright (heading + body), Sora (button)
   ============================================================ */

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

/* ── Section wrapper ── */
.hor-section {
  background-color: #1e3374;
  position: relative;
  overflow: hidden;
  padding: 70px 0 124px;
}

/* ── Decorative side images ──
   Two overlapping rotated images pinned to each edge,
   clipped by the section's overflow:hidden. Hidden on
   small screens to avoid layout disruption.
   ─────────────────────────────────────────────────── */
.hor-deco {
  position: absolute;
    bottom: 0;
    left: 0;
    width: 922px;
    height: 958px;
    pointer-events: none;
    z-index: 0;
}

/*.hor-deco--left {
  left: 100px;
  transform: scale(1.2);
  top: 531px;
}*/

.hor-deco--right {
    bottom: 190px;
    left: auto;
    right: 0;
}

.hor-deco__img {
  /*position: absolute;*/
  object-fit: cover;
}

/* left deco */
.hor-deco--left .hor-deco__img--a {
  width: 922px;
  height: 958px;
}

.hor-deco--left .hor-deco__img--b {
  width: 445px;
  height: 414px;
  transform: rotate(163.15deg);
  top: 100px;
  left: -60px;
}

/* right deco (mirrored) */
.hor-deco--right .hor-deco__img--a {
     width: 922px;
    height: 1072px;
}

.hor-deco--right .hor-deco__img--b {
  width: 482px;
  height: 391px;
  transform: rotate(9.15deg);
  top: 3px;
  right: -60px;
}

/* ── Main container ── */
.hor-container {
  margin: 0 auto;
  padding: 0 135px;
  position: relative;
  z-index: 1;
}

/* ── Section heading ── */
.hor-heading {
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 70px);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.08;
  margin-bottom: 85px;
}

/* ── Two-column content grid ── */
.hor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* ── Left column ── */
.hor-col--left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hor-text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hor-description {
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.41;
  letter-spacing: 0.64px;
  max-width: 753px;
  padding: 0 30px 0 0;
}

.hor-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.64px;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 9px;
  width: fit-content;
  transition: opacity 0.2s ease;
}

.hor-btn:hover {
  opacity: 0.75;
}

/* Bottom-left image (large) */
.hor-img-box--bottom-left {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.hor-img-box--bottom-left img {
  width: 100%;
  /*aspect-ratio: 116 / 77;*/
  object-fit: cover;
  display: block;
}

/* ── Right column ── */
.hor-col--right {
  display: flex;
  flex-direction: column;
  gap: 86px;
  padding-top: 78px;
}

/* Top-right image (large) */
.hor-img-box--top-right {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.hor-img-box--top-right img {
  width: 100%;
  /*aspect-ratio: 403 / 302;*/
  object-fit: cover;
  display: block;
}

/* Row that holds the small image (left-aligned, ~48% width) */
.hor-right-bottom {
  display: flex;
  justify-content: flex-start;
}

.hor-img-box--small {
  border-radius: 20px;
  overflow: hidden;
  width: 48%;
}

.hor-img-box--small img {
  width: 100%;
  aspect-ratio: 387 / 290;
  object-fit: cover;
  display: block;
}

/* ── Responsive — large tablet (≤ 1280px) ── */
@media (max-width: 1280px) {
  .hor-container {
    padding: 0 80px;
  }

  .hor-deco {
    display: none;
  }
}

/* ── Responsive — tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .hor-container {
    padding: 0 48px;
  }

  .hor-heading {
    margin-bottom: 48px;
  }

  .hor-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hor-img-box--small {
    width: 55%;
  }
}

/* ── Responsive — mobile (≤ 600px) ── */
@media (max-width: 600px) {
  .hor-section {
    padding: 48px 0 64px;
  }

  .hor-container {
    padding: 0 24px;
  }

  .hor-heading {
    margin-bottom: 36px;
  }

  .hor-img-box--small {
    width: 100%;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&display=swap");

.gallery-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 3rem 0 5rem;
  background-color: #faf7f4;
}

/* Texture overlay */
.gallery-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* Section content wrapper */
.gallery-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.gallery-title {
  font-family: 'Cormorant Upright', serif;
  font-size: clamp(2.5rem, 6vw, 4.375rem);
  font-weight: 600;
  color: #1e3374;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.08;
  margin: 0;
}

/* Description */
.gallery-description {
  font-family: 'Cormorant Upright', serif;
  font-size: clamp(1rem, 1.6vw, 1.75rem);
  font-weight: 400;
  color: #353535;
  text-align: center;
  line-height: 1.41;
  letter-spacing: 0.04em;
  max-width: 1140px;
  margin: 0;
}

/* Image + arrows wrapper */
.gallery-slider {
  position: relative;
  width: 100%;
}

/* Gallery image */
.gallery-image {
  width: 100%;
  aspect-ratio: 137 / 68;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Arrow buttons */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 5vw, 90px);
  height: clamp(56px, 5vw, 90px);
  border-radius: 50%;
  background: #f9f6f3;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
  padding: 0;
  flex-shrink: 0;
}

.gallery-arrow:hover {
  background: #ede9e5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.gallery-arrow svg {
  width: clamp(24px, 2.5vw, 42px);
  height: clamp(24px, 2.5vw, 42px);
}

.gallery-arrow--left {
  left: clamp(-28px, -2vw, -45px);
}

.gallery-arrow--right {
  right: clamp(-28px, -2vw, -45px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-section {
    padding: 2.5rem 0 3.5rem;
  }

  .gallery-description {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }

  .gallery-arrow--left {
    left: 4px;
  }

  .gallery-arrow--right {
    right: 4px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 2rem 0 3rem;
  }

  .gallery-inner {
    gap: 1.25rem;
    padding: 0 1rem;
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
  }

  .gallery-arrow svg {
    width: 20px;
    height: 20px;
  }

  .gallery-arrow--left {
    left: 2px;
  }

  .gallery-arrow--right {
    right: 2px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@400;600&display=swap');

.services-section {
  position: relative;
  background: #1E3374;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 64px 0;
}

/* Decorative top-left */
.deco-top-left {
  position: absolute;
  left: -144px;
  top: -128px;
  width: 649px;
  height: 649px;
  transform: rotate(165deg);
  pointer-events: none;
  display: none;
}

.deco-top-left__shape1 {
  position: absolute;
  width: 472px;
  height: 472px;
  left: 64px;
  top: 64px;
  transform: rotate(133.62deg);
}

.deco-top-left__shape2 {
  position: absolute;
  width: 401px;
  height: 395px;
  left: 190px;
  top: 28px;
  transform: rotate(165deg);
}

/* Decorative bottom-right */
.deco-bottom-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 527px;
  height: 522px;
  pointer-events: none;
  display: none;
}

.deco-bottom-right__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.deco-bottom-right__fg {
  position: absolute;
  left: 27px;
  top: 152px;
  width: 401px;
  height: 370px;
}

/* Main layout */
.services-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Image side */
.services-image-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  margin-bottom: 24px;
}

.services-image-frame {
  position: relative;
  overflow: hidden;
  background: #D9D9D9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.30);
  width: 100%;
  max-width: 616px;
  height: 400px;
}

.services-image-frame__img {
  position: absolute;
  width: 155%;
  max-width: none;
  left: -50%;
  top: -12px;
  height: auto;
}

/* Card side */
.services-card-wrap {
  width: 100%;
  padding: 0 16px;
}

.services-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.30);
  padding: 40px 24px;
}

.services-title {
  font-family: 'Cormorant Upright', serif;
  color: #1E3374;
  font-size: 38px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.service-col__heading {
  font-family: 'Cormorant Upright', serif;
  color: #1E3374;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 28px;
}

.service-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-col__list li {
  font-family: 'Cormorant Upright', serif;
  color: #282B32;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

/* Tablet */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-image-frame {
    height: 520px;
  }

  .services-title {
    font-size: 52px;
  }


}

/* Desktop */
@media (min-width: 1024px) {

  .deco-top-left,
  .deco-bottom-right {
    display: block;
  }

  .services-section {
    padding: 80px 0;
  }

  .services-inner {
    flex-direction: row;
    align-items: center;
  }

  .services-image-wrap {
    width: 38%;
    flex-shrink: 0;
    padding-left: 7%;
    padding-right: 0;
    margin-bottom: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .services-image-frame {
    max-width: 100%;
    height: 691px;
  }

  .services-card-wrap {
    width: 65%;
    padding: 0;
    margin-left: -32px;
  }

  .services-card {
    padding: 109px 54px;
  }

  .services-title {
    font-size: 70px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
  }

  .service-col__heading {
    font-size: 28px;
  }

  .service-col__list li {
    font-size: 22px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@400;500;600&display=swap");

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

body {
  background: #f0ede8;
  font-family: "Cormorant Upright", serif;
}

/* ── Section wrapper ── */
.krose-section {
  width: 100%;
  padding: 48px 133px;
}

/* ── Card ── */
.krose-card {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #1e3374 0%, rgba(0, 0, 0, 0.11) 100%),
    url("https://api.builder.io/api/v1/image/assets/TEMP/b96cafbbb0840cc69c2b48b649519136e00f2ad7?width=3307") lightgray center / cover no-repeat;
  min-height: 686px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Decorative dot-smoke images ── */
.krose-dot-top-left {
  position: absolute;
  top: 68px;
  left: 85px;
  width: 132px;
  height: 85px;
  pointer-events: none;
  user-select: none;
}

.krose-dot-bottom-right {
  position: absolute;
  bottom: 68px;
  right: 85px;
  width: 132px;
  height: 85px;
  pointer-events: none;
  user-select: none;
}

/* ── Inner content wrapper ── */
.krose-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 60px 20px;
  max-width: 960px;
  width: 100%;
}

/* ── Heading ── */
.krose-heading {
  font-family: "Cormorant Upright", serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.15;
  color: #f3ecdc;
  text-transform: capitalize;
  margin-bottom: 0;
}

/* ── Subtitle ── */
.krose-subtitle {
  font-family: "Cormorant Upright", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.074;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 27px;
  max-width: 960px;
}

/* ── Button ── */
.krose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  padding: 26px 66px;
  border-radius: 40px;
  background: #1e3374;
  border: none;
  cursor: pointer;
  text-decoration: none;

  font-family: "Cormorant Upright", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 3.3px;
  text-transform: uppercase;
  color: #f3ecdc;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.krose-btn:hover {
  background: #162755;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1200px) {
  .krose-section {
    padding: 40px 60px;
  }

  .krose-card {
    min-height: 580px;
  }

  .krose-heading {
    font-size: 56px;
  }

  .krose-subtitle {
    font-size: 28px;
  }

  .krose-dot-top-left,
  .krose-dot-bottom-right {
    width: 96px;
    height: 62px;
  }
}

/* ── Responsive: Mobile landscape / small tablet ── */
@media (max-width: 768px) {
  .krose-section {
    padding: 24px 20px;
  }

  .krose-card {
    min-height: auto;
    border-radius: 24px;
  }

  .krose-content {
    padding: 60px 24px;
  }

  .krose-heading {
    font-size: 36px;
  }

  .krose-subtitle {
    font-size: 20px;
    margin-top: 20px;
  }

  .krose-btn {
    margin-top: 40px;
    font-size: 18px;
    padding: 20px 48px;
    letter-spacing: 2.5px;
  }

  .krose-dot-top-left {
    width: 72px;
    height: 46px;
    top: 20px;
    left: 20px;
  }

  .krose-dot-bottom-right {
    width: 72px;
    height: 46px;
    bottom: 20px;
    right: 20px;
  }
}

/* ── Responsive: Small mobile ── */
@media (max-width: 480px) {
  .krose-heading {
    font-size: 28px;
  }

  .krose-subtitle {
    font-size: 17px;
  }

  .krose-btn {
    font-size: 15px;
    padding: 18px 36px;
    letter-spacing: 2px;
  }
}

/* ============================================================
   Testimonials Section — "What customers say about us"
   ============================================================ */

/* Google Font is loaded via <link> in the HTML */

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

/* ── Section wrapper ─────────────────────────────────────── */
.testimonials-section {
  position: relative;
  width: 100%;
  min-height: 575px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 48px 0;
}

/* ── Background texture ──────────────────────────────────── */
.testimonial-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-texture {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.bg-texture--top {
  top: 0;
  left: 0;
  /*transform: rotate(90deg);*/
}

.bg-texture--bottom {
  bottom: 0;
  right: -50%;
  transform: rotate(90deg);
}

/* ── Header ──────────────────────────────────────────────── */
.testimonial-header {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.testimonial-title {
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 600;
  color: #1e3374;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.08;
}

/* ── Cards container ─────────────────────────────────────── */
.testimonial-cards {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  width: 100%;
  /*max-width: 1904px;*/
  flex-wrap: wrap;
}

/* ── Individual card ─────────────────────────────────────── */
.testimonial-card {
  flex: 1 1 260px;
  max-width: 616px;
  min-height: 245px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 50px;
  background: #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}

/* ── Reviewer name ───────────────────────────────────────── */
.reviewer-name {
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  line-height: normal;
}

/* ── Review text ─────────────────────────────────────────── */
.review-text {
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: normal;
}

/* ── Pagination ──────────────────────────────────────────── */
.pagination {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Responsive breakpoints ──────────────────────────────── */

/* Large desktop — cards at full natural width */
@media (min-width: 1400px) {
  .testimonial-cards {
    flex-wrap: nowrap;
  }
}

/* Tablet — allow slight shrink, keep three columns if possible */
@media (max-width: 1100px) {
  .testimonial-card {
    flex: 1 1 280px;
    border-radius: 36px;
  }
}

/* Small tablet — two cards per row, third wraps */
@media (max-width: 780px) {
  .testimonials-section {
    gap: 40px;
    padding: 40px 0;
  }

  .testimonial-card {
    flex: 1 1 100%;
    border-radius: 30px;
    min-height: unset;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .testimonials-section {
    gap: 32px;
    padding: 32px 0;
  }

  .testimonial-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .review-text {
    font-size: 20px;
  }

  .reviewer-name {
    font-size: 18px;
  }
}

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

body {
  margin: 0;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background-color: #fef9f1;
  width: 100%;
}

/* ─── Main content row ────────────────────────────────────── */
.footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 135px;
}

/* ─── About ───────────────────────────────────────────────── */
.footer-about {
  flex: 1 1 0;
  max-width: 427px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-about-text {
  font-family: 'Cormorant Upright', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 141%;
  letter-spacing: 0.88px;
  color: #353535;
}

/* ─── Logo ────────────────────────────────────────────────── */
.footer-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-img {
  /*width: 313px;
  height: 161px;*/
  object-fit: contain;
  display: block;
}

/* ─── Our Info ────────────────────────────────────────────── */
.footer-info {
  flex: 1 1 0;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-info-title {
  font-family: 'Cormorant Upright', serif;
  font-weight: 400;
  font-size: 39px;
  line-height: 128%;
  text-transform: capitalize;
  color: #1a1a1a;
}

/* ─── Contact list ────────────────────────────────────────── */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.footer-contact-item--center {
  align-items: center;
}

.footer-icon {
  flex-shrink: 0;
  width: 23px;
  height: 23px;
}

.footer-contact-text, .footer-contact-text a {
  font-family: 'Cormorant Upright', serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 141%;
  letter-spacing: 0.88px;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-contact-text a:hover {
  color: #2a2a86;
}

/* ─── Footer bar (bottom row) ─────────────────────────────── */
.footer-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-bottom: 13px;
}

.footer-bar-divider {
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
}

.footer-bar-copy {
  font-family: 'Cormorant Upright', serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 141%;
  letter-spacing: 0.64px;
  color: #353535;
  text-align: center;
}

/* ─── Responsive: Tablet (≤ 1024px) ──────────────────────── */
@media (max-width: 1024px) {
  .footer-content {
    padding: 48px 60px;
    gap: 32px;
  }

  /*.footer-logo-img {
    width: 240px;
    height: auto;
  }*/

  .footer-about-text,
  .footer-contact-text {
    font-size: 18px;
  }

  .footer-info-title {
    font-size: 32px;
  }
}

/* ─── Responsive: Mobile (≤ 768px) ───────────────────────── */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 36px;
    text-align: center;
  }

  .footer-about {
    max-width: 100%;
    align-items: center;
  }

  .footer-logo {
    width: 100%;
  }

  /*.footer-logo-img {
    width: 220px;
    height: auto;
  }*/

  .footer-info {
    max-width: 100%;
    width: 100%;
    align-items: center;
  }

  .footer-contact-list {
    align-items: flex-start;
    width: 100%;
  }

  .footer-contact-item {
    align-items: flex-start;
  }

  .footer-about-text,
  .footer-contact-text {
    font-size: 17px;
  }

  .footer-info-title {
    font-size: 30px;
  }
}

/* ─── Responsive: Small mobile (≤ 480px) ─────────────────── */
@media (max-width: 480px) {
  .footer-content {
    padding: 32px 20px;
    gap: 28px;
  }

  /*.footer-logo-img {
    width: 180px;
  }*/

  .footer-about-text,
  .footer-contact-text {
    font-size: 16px;
  }

  .footer-info-title {
    font-size: 26px;
  }

  .footer-bar-copy {
    font-size: 14px;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero__deco {
    display: none;
  }

  .about__right-deco {
    display: none;
  }
}

@media (max-width: 767px) {

  .hero__cards,
  .about__left-deco {
    display: none;
  }

  .hero__subtitle,
  .about__label {
    letter-spacing: 0.25em;
  }
}

@media (max-width: 480px) {

  .hero__content,
  .about__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.services-card-wrap {
  z-index: 11;
  width: 56.5%;
}

@media (max-width: 1024px) {

  .services-card-wrap {
    z-index: 11;
    width: 100%;
  }
}

/* ── Section ────────────────────────────────────────────────────────────── */
.explore-rooms {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 48px 0 88px;
  font-family: 'Cormorant Upright', Georgia, serif;
}

/* Background texture — rotated & faint */
.explore-rooms__texture {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
  transform: rotate(90deg);
  z-index: 0;
}

/* ── Section title ──────────────────────────────────────────────────────── */
.explore-rooms__title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #1e3374;
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 70px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: capitalize;
  margin-bottom: clamp(48px, 5.5vw, 86px);
}

/* ── Grid ───────────────────────────────────────────────────────────────── */
/*
  Original proportions at 1920px:
    left margin  = 175 px  (9.11%)
    card width   = 419 px  (21.82%)
    center gap   = 732 px  (38.13%)
    card width   = 419 px  (21.82%)
    right margin = 175 px  (9.11%)
*/
/*.rooms-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 14vw, 220px);
  row-gap: clamp(48px, 5.5vw, 87px);
  padding-left: clamp(20px, 9.11%, 175px);
  padding-right: clamp(20px, 9.11%, 175px);
  max-width: 1700px;
  margin: 0 auto;
}
*/
/* ── Card ───────────────────────────────────────────────────────────────── */
.room-card {
  display: flex;
  flex-direction: column;
}

/* Card heading — shown above the images */
.room-card__title {
  position: relative;
  z-index: 2;
  color: #1e3374;
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: clamp(26px, 2.7vw, 50px);
  font-weight: 500;
  line-height: 1.013;
  text-transform: capitalize;
  /* matches original 102px title height; use min-height so shorter titles align */
  min-height: clamp(56px, 6.5vw, 102px);
  display: flex;
  align-items: flex-start;
}

.room-card__title--right {
  text-align: right;
  justify-content: flex-end;
}

/* ── Images area ────────────────────────────────────────────────────────── */
/*
  Original image block: 419 × 665 px  → aspect-ratio 419/665
  Pill starts at top:0 of this block.
  Main image starts at top:140px = 21.05% of 665px height.
*/
.room-card__images {
  position: relative;
  width: 100%;
  aspect-ratio: 419 / 665;
  /*overflow: hidden;*/
}

/* Decorative leaf / botanical silhouette */
/*.room-card__deco {
  position: absolute;
  width: 221%;
  height: auto;
  top: -43.76%;
  left: -39.86%;
  transform: rotate(-146.016deg);
  transform-origin: center center;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}*/

/* Right-card variant: mirror the horizontal offset */
/*.room-card__deco--flip {
  left: auto;
  right: -39.86%;
}*/

/* Main landscape image */
.room-card__main-img {
  position: absolute;
  inset: 21.05% 0 0 0;
  /* top = 140/665 */
  border-radius: clamp(12px, 2.1vw, 24px);
  overflow: hidden;
  z-index: 1;
}

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

/* Pill portrait image */
/*
  Original pill: 160 × 280 px
    width  = 160/419 = 38.19%
    height = 280/665 = 42.11%  (correct via aspect-ratio)
  Left-card: right edge at 419-389=30px from right → right: 7.16%
  Right-card: left edge at 30px from left           → left:  7.16%
*/
.room-card__pill {
  position: absolute;
  top: 0;
  width: 38.19%;
  aspect-ratio: 160 / 280;
  border-radius: 9999px;
  overflow: hidden;
  z-index: 2;
}

.room-card__pill--right {
  /* left card: pill sits near the right side */
  right: 7.16%;
}

.room-card__pill--left {
  /* right card: pill sits near the left side */
  left: 7.16%;
}

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

/* ── Room info (name + price) ───────────────────────────────────────────── */
.room-card__info {
  margin-top: clamp(14px, 1.6vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.room-card__info--right {
  text-align: right;
}

.room-card__name {
  display: block;
  color: #1a1a1a;
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: capitalize;
}

.room-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.room-card__price--right {
  justify-content: flex-end;
}

.price__amount {
  color: #1e3374;
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: clamp(20px, 2.1vw, 37px);
  font-weight: 400;
  line-height: 1.41;
  letter-spacing: 1.47px;
}

.price__unit {
  color: #353535;
  font-family: 'Cormorant Upright', Georgia, serif;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 300;
  line-height: 1.41;
  letter-spacing: 0.66px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

/* Tablet: tighten gap a bit */
@media (max-width: 900px) {
  .rooms-grid {
    column-gap: clamp(24px, 6vw, 80px);
  }
}

/* Mobile: single column, left-align all text */
@media (max-width: 600px) {
  .explore-rooms {
    padding: 40px 0 60px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
    row-gap: 48px;
  }

  .room-card__title {
    min-height: unset;
    margin-bottom: 0;
  }

  .room-card__title--right {
    text-align: left;
    justify-content: flex-start;
  }

  .room-card__info--right {
    text-align: left;
  }

  .room-card__price--right {
    justify-content: flex-start;
  }

  /* On mobile right-cards, move pill to right side to match left-cards */
  .room-card--right .room-card__pill--left {
    left: auto;
    right: 7.16%;
  }
}

/* 6-5-2026 */
body { overflow: hidden; overflow-y: auto; }
.rooms-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; column-gap: 732px; row-gap: clamp(48px, 5.5vw, 87px); padding: 0 175px; margin: 0 auto; } 
.room-card__deco { position: absolute; width: 490px; height: auto; top: 50px; left: 110px; transform-origin: center center; pointer-events: none; z-index: 0; }
.room-card__deco--flip { left: -110px; }
.testimonials-section .owl-carousel { padding: 0 10px; }
.testimonials-section .owl-carousel .item { padding: 20px 0; }
.testimonials-section .owl-carousel .owl-dots { width: 100%; display: flex; text-align: center; flex-direction: row; flex-wrap: nowrap; align-content: center; justify-content: center; align-items: center; margin: 45px 0 0; }
.testimonials-section .owl-carousel .owl-dots .owl-dot { line-height: 0; float: left; margin-right: 16px; }
.testimonials-section .owl-carousel .owl-dots .owl-dot:last-child { margin-right: 0; }
.testimonials-section .owl-carousel .owl-dots .owl-dot span { width: 12px; height: 12px; background: #292D32; border: none; border-radius: 50px; display: inline-block; }
.testimonials-section .owl-carousel .owl-dots .owl-dot.active span { width: 34px; background: #1E3374; }

.gallery-section { padding: 65px 0 178px; }
.gallery-section .owl-carousel { max-width: 1090px; margin: 0 auto; }
.gallery-section .owl-carousel .item img { width: 100%; border-radius: 20px; }
.gallery-section .owl-carousel .owl-nav button { position: absolute; top: 50%; -ms-transform: translateY(-50%); -webkit-transform: translateY(-50%); transform: translateY(-50%); left: -96px; } 
.gallery-section .owl-carousel .owl-nav button.owl-next { left: auto; right: -96px; }
.gallery-section .owl-carousel .owl-nav button svg path { fill: #BFBFBF; }
.gallery-section .owl-carousel .owl-nav button:hover svg path { fill: #353535; }
.gallery-slider { position: relative; width: 100%; display: inline-block; margin: 0 0 0; }
.gallery-section .gallery-slider:before { content: ""; position: absolute; bottom: -136px; left: 171px; background: url(./images/our-gallery-bg-1.png); width: 332px; height: 412px; background-repeat: no-repeat; background-size: cover; z-index: 1; }
.gallery-section .gallery-slider:after { content: ""; position: absolute; bottom: -66px; right: 120px; background: url(./images/our-gallery-bg-2.png); width: 423px; height: 306px; background-repeat: no-repeat; background-size: cover; } 

.footer-logo { display: flex; flex-direction: column; flex-wrap: nowrap; align-content: center; justify-content: space-between; min-height: 299px; }
.footer-logo ul { width: auto; display: inline-block; list-style: none; margin: 0 0 0; }
.footer-logo ul li { width: auto; float: left; list-style: none; padding: 0; margin: 0 8px 0 0; }
.footer-logo ul li:last-child { margin: 0; }

.floating_btn { position: fixed; bottom: 20px; right: 20px; width: 100px; height: 100px; display: flex; flex-direction: column; align-items:center; justify-content:center; z-index: 1000; }
.floating_btn .contact_icon { background-color: #42db87; color: #fff; width: 60px; height: 60px; font-size:30px; border-radius: 50px; text-align: center; box-shadow: 2px 2px 3px #999; display: flex; align-items: center; justify-content: center; transform: translatey(0px); animation: pulse 1.5s infinite; box-shadow: 0 0 0 0 #42db87; -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1); -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1); -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1); animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1); font-weight: normal; font-family: sans-serif; text-decoration: none !important; transition: all 300ms ease-in-out; }
.floating_btn .contact_icon img { width: 30px; }

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}



@media (max-width: 1850px) {

.hor-deco { width: 872px; height: 738px; }
.hor-deco--left .hor-deco__img--a { width: 722px; height: 758px; }
.hor-deco--right .hor-deco__img--a { width: 922px; height: 862px; }
.rooms-grid { column-gap: 732px; padding: 0 150px; }
.room-card__deco { left: 100px; }
.room-card__deco--flip { left: -100px; }
.hero__deco-rotated { width: 380px; top: 7%; right: 13%; }
.hero__deco-panel { bottom: 5px; right: 11rem; width: 59%; }

}

@media (max-width: 1650px) {

.rooms-grid { column-gap: 450px; padding: 0 120px; }
.room-card__deco { left: 120px; }
.room-card__deco--flip { left: -115px; }

}

@media (max-width: 1450px) {

.hor-deco { width: 720px; height: 660px; }
.hor-deco--left .hor-deco__img--a { width: 612px; height: 628px; }
.hor-deco--right .hor-deco__img--a { width: 782px; height: 662px; }
.rooms-grid { column-gap: 400px; padding: 0 80px; }
.hero__deco-rotated { width: 330px; top: 7%; right: 13%; }
.hero__deco-panel { bottom: 5px; right: 8rem; width: 60%; }
.gallery-section .gallery-slider:before { bottom: -146px; left: 71px; }
.gallery-section .gallery-slider:after { bottom: -66px; right: 10px; }


}

@media (max-width: 1366px) {

.hor-deco { width: 670px; height: 580px; }
.hor-deco--left .hor-deco__img--a { width: 562px; height: 578px; }
.hor-deco--right .hor-deco__img--a { width: 632px; height: 662px; }
.room-card__deco { left: 110px; }
.room-card__deco--flip { left: -105px; }
.gallery-section .gallery-slider:before { bottom: -126px; left: 30px; width: 250px; height: 322px; background-size: 250px; }
.gallery-section .gallery-slider:after { bottom: -30px; right: 0px; width: 350px; height: 230px; background-size: 350px; }
.footer-logo-img { width: 110px; }

}

@media (max-width: 1280px) {

.rooms-grid { column-gap: 350px; padding: 0 60px; }
.hero__deco-panel { bottom: 3px; right: 6.5rem; width: 65%; }
.hero__deco-rotated { width: 300px; top: 7%; right: 13%; } 
.gallery-section .owl-carousel .owl-nav button { left: -70px; }
.gallery-section .owl-carousel .owl-nav button.owl-next { right: -70px; }

}

@media (max-width: 1150px) {

.testimonials-section { gap: 40px; }
.testimonials-section .owl-carousel .owl-dots { margin: 35px 0 0; }
.testimonials-section .owl-carousel .owl-dots .owl-dot { margin-right: 12px; }
.hor-col--right { gap: 55px; padding-top: 50px; }
.hor-heading { margin-bottom: 65px; }
.hor-section { padding: 70px 0 100px; }
.hor-description { max-width: 100%; padding: 0; }
.rooms-grid { column-gap: 300px; padding: 0 60px; }
.room-card__deco { left: 80px; }
.room-card__deco--flip { left: -75px; }
.gallery-section .gallery-slider:before, .gallery-section .gallery-slider:after { display: none; }
.gallery-section .owl-carousel  .owl-dots { width: 100%; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: center; margin: 30px 0 0; }
.gallery-section .owl-carousel .owl-dots button.owl-dot { line-height: 0; float: left; margin-right: 10px; } 
.gallery-section .owl-carousel .owl-dots button.owl-dot span { width: 10px; height: 10px; background: #292D32; border: none; border-radius: 50px; display: inline-block; }
.gallery-section .owl-carousel .owl-dots button.owl-dot:last-child { margin: 0; }
.gallery-section .owl-carousel .owl-dots button.owl-dot.active span { width: 25px; background: #1E3374; }
.gallery-section { padding: 65px 0 100px; }
.footer-logo-img { width: 100px; }
.footer-logo { min-height: 273px; }

}

@media (max-width: 999px) {

.hor-section { padding: 60px 0 70px; }
.hor-col--right { gap: 24px; padding-top: 0; }
.hor-heading { margin-bottom: 40px; }
.rooms-grid { column-gap: 200px; padding: 0 50px; }
.room-card__deco { top: 30px; left: 60px; }
.room-card__deco--flip { left: -55px; }
.gallery-section { padding: 60px 0 90px; }
.footer-logo { min-height: initial; }
.footer-logo ul { margin: 30px 0 0; } 

}

@media (max-width: 767px) {

.testimonials-section { min-height: initial; gap: 20px; padding: 50px 0; }
.testimonials-section .owl-carousel { padding: 0; }
.testimonials-section .owl-carousel .item { padding: 17px; }
.testimonials-section .owl-carousel .owl-dots { margin: 20px 0 0; }
.hor-section { padding: 50px 0 60px; }
.hor-heading { margin-bottom: 30px; }
.rooms-grid { column-gap: 120px; padding: 0 30px; }
.gallery-section { padding: 50px 0 70px; }
.gallery-section .owl-carousel .item img { border-radius: 15px; }
.footer-logo ul { margin: 25px 0 0; } 
.floating_btn { bottom: 15px; right: 15px; width: 70px; height: 70px; }
.floating_btn .contact_icon { width: 50px; height: 50px; } 
.floating_btn .contact_icon img { width: 25px; }

}

@media (max-width: 480px) {

.testimonials-section { padding: 40px 0; }
.testimonials-section .owl-carousel .owl-dots .owl-dot { margin-right: 8px; }
.testimonials-section .owl-carousel .owl-dots .owl-dot span { width: 10px; height: 10px; }
.testimonials-section .owl-carousel .owl-dots .owl-dot.active span { width: 25px; }
.hor-section { padding: 40px 0; }
.rooms-grid { width: 100%; display: inline-block; }
.room-card__deco { display: none; }
.room-card:nth-child(n+2) { margin-top: 30px; }
.gallery-section { padding: 40px 0 60px; }
.gallery-section .owl-carousel .owl-dots { margin: 20px 0 0; }
.footer-logo-img { width: 90px; }
.footer-logo ul { margin: 20px 0 0; } 
.gallery-section .owl-carousel .owl-dots button.owl-dot { margin-right: 8px; }
.gallery-section .owl-carousel .owl-dots button.owl-dot.active span { width: 22px; }


}








