:root {
  --primary: #00a9eb;
  --primary-dark: #007bb8;
  --secondary: #080282;
  --ink: #182233;
  --muted: #687384;
  --soft: #f2faff;
  --cream: #eaf8fe;
  --white: #ffffff;
  --line: #c8ebf8;
  --success: #0c9588;
  --shadow: 0 18px 48px rgba(0, 71, 118, .16);
  --shadow-soft: 0 12px 28px rgba(14, 46, 76, .10);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden
}

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

ul {
  list-style: none
}

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

.container {
  width: min(1180px, 92%);
  margin: auto
}

.section {
  padding: 86px 0;
  position: relative
}

.section.soft {
  background: var(--soft)
}

.eyebrow,
.section-title span {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase
}

.section-title {
  text-align: center;
  margin-bottom: 42px
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  color: #050b14;
  margin: 8px 0 12px
}

.section-title p {
  max-width: 760px;
  margin: auto;
  color: var(--muted)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 13px;
  padding: 13px 24px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: .28s ease;
  box-shadow: 0 10px 24px rgba(0, 169, 235, .12)
}

.btn-primary {
  background: var(--primary);
  color: #fff
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px)
}

.btn-secondary {
  background: var(--secondary);
  color: #fff
}

.btn-secondary:hover {
  background: #05006d;
  transform: translateY(-3px)
}

.btn-outline {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  box-shadow: none
}

.btn-outline:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px)
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-soft)
}

.btn-light:hover {
  transform: translateY(-3px);
  color: var(--secondary)
}

.progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  width: 0%
}

.loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: grid;
  place-items: center;
  z-index: 9998;
  transition: .45s ease
}

.loader.hide {
  opacity: 0;
  visibility: hidden
}

.loader-box {
  text-align: center
}

.loader-logo {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: .4px
}

.loader-line {
  height: 4px;
  width: 170px;
  background: #eef7fb;
  border-radius: 20px;
  margin: 12px auto 0;
  overflow: hidden
}

.loader-line:after {
  content: "";
  display: block;
  height: 100%;
  width: 55%;
  background: var(--primary);
  border-radius: inherit;
  animation: load 1s infinite alternate
}

@keyframes load {
  to {
    transform: translateX(95px)
  }
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 235, 248, .75);
  transition: .3s
}

.header.scrolled {
  box-shadow: 0 12px 30px rgba(0, 71, 118, .08)
}
.brand-logo {
  height: 160px;
  padding: 40px 0;
  border-radius: 5px;
  width: auto;
}


.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

/* .brand-icon {
  width: 150px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  background: linear-gradient(145deg, var(--secondary), var(--primary));
  box-shadow: 0 14px 28px rgba(0, 169, 235, .2);
  position: relative;
  overflow: hidden
} */

/* .brand-icon:after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 13px
}

.brand-text strong {
  display: block;
  color: var(--secondary);
  font-size: 19px;
  line-height: 1
}

.brand-text small {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: .7px
} */

.hamburger {
  display: none;
  border: 0;
  background: var(--soft);
  color: var(--secondary);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 20px;
  cursor: pointer
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-link {
  padding: 12px 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #28364b;
  transition: .25s
}

.nav-link:hover,
.nav-link.active {
  background: var(--soft);
  color: var(--primary-dark)
}

.dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: 115%;
  left: 0;
  min-width: 218px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: #334155;
  font-weight: 400;
  font-size: 14px
}

.dropdown-menu a:hover {
  background: var(--soft);
  color: var(--primary-dark)
}

.book-top {
  margin-left: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 500;
  box-shadow: 0 12px 22px rgba(0, 169, 235, .22);
  transition: .25s
}

.book-top:hover {
  background: var(--secondary);
  transform: translateY(-2px)
}

.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, rgba(8, 2, 130, .84), rgba(0, 169, 235, .58)), url('../img/13\ \(1\).jpg') center/cover no-repeat
}

.hero:before {
  content: "";
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 260px;
  background: #fff;
  border-radius: 50% 50% 0 0/100% 100% 0 0
}

.hero:after {
  content: "";
  position: absolute;
  right: -120px;
  top: 120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  filter: blur(3px)
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center
}

.hero-content {
  color: #fff
}

.hero-content .eyebrow {
  color: #dff7ff
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  margin: 12px 0 18px;
  letter-spacing: -2px
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.hero-panel {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(0, 20, 58, .26);
  padding: 18px;
  transform-style: preserve-3d;
  animation: float 4.8s ease-in-out infinite
}

.hero-panel img {
  height: 330px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px
}

.hero-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px
}

.hero-mini div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  text-align: center
}

.hero-mini i {
  color: var(--primary-dark);
  font-size: 20px
}

.hero-mini b {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  color: var(--secondary)
}

@keyframes float {
  50% {
    transform: translateY(-14px) rotateX(3deg) rotateY(-2deg)
  }
}

.quick-card {
  margin-top: -70px;
  position: relative;
  z-index: 5
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow)
}

.quick-item {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, var(--soft));
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.quick-item i {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff
}

.quick-item h3 {
  font-size: 16px;
  color: var(--secondary)
}

.quick-item p {
  font-size: 13px;
  color: var(--muted)
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center
}

.photo-stack {
  position: relative;
  min-height: 455px
}

.photo-stack img {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow)
}

.photo-stack .big {
  left: 0;
  top: 0;
  width: 78%;
  height: 390px
}

.photo-stack .small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 235px;
  border: 9px solid #fff
}

.floating-badge {
  position: absolute;
  left: 32px;
  bottom: 22px;
  background: #fff;
  border-radius: 22px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center
}

.floating-badge i {
  font-size: 28px;
  color: var(--primary-dark)
}

.about-content h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin: 10px 0 16px
}

.about-content p {
  color: var(--muted);
  margin-bottom: 18px
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0
}

.feature-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff
}

.feature-list i {
  color: var(--primary-dark);
  font-size: 22px;
  margin-top: 2px
}

.feature-list strong {
  display: block;
  color: var(--secondary)
}

.feature-list span {
  font-size: 14px;
  color: var(--muted)
}

.room-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.room-card,
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: .35s;
  transform-style: preserve-3d
}

.room-card:hover,
.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow)
}

.room-image {
  height: 260px;
  position: relative;
  overflow: hidden
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.room-card:hover .room-image img {
  transform: scale(1.08)
}

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 12px
}

.room-body {
  padding: 24px
}

.room-body h3 {
  font-size: 23px;
  color: #050b14
}

.room-body p {
  color: var(--muted);
  margin: 8px 0 16px
}

.room-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.room-meta span {
  font-size: 12px;
  font-weight: 800;
  color: #334155;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px
}

.room-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.price {
  font-weight: 900;
  color: var(--secondary);
  font-size: 19px
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.icon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: .3s
}

.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.icon-card i {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--secondary), var(--primary));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px
}

.icon-card h3 {
  font-size: 18px;
  color: var(--secondary)
}

.icon-card p {
  font-size: 14px;
  color: var(--muted)
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 18px
}

.gallery-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-soft)
}

.gallery-item.tall {
  grid-row: span 2
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.gallery-item:hover img {
  transform: scale(1.07)
}

.gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, .92);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 900;
  color: var(--secondary)
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.place-card {
  position: relative;
  height: 310px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft)
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.place-card:hover img {
  transform: scale(1.08)
}

/* .place-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72))
} */

.place-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff
}

.place-content h3 {
  font-size: 22px
}

.place-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, .84)
}

.cta {
  background: linear-gradient(130deg, var(--secondary), var(--primary));
  color: #fff;
  border-radius: 34px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden
}

.cta:before {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12)
}

.cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15
}

.cta p {
  color: rgba(255, 255, 255, .86);
  margin-top: 10px
}

.page-hero {
  padding: 150px 0 85px;
  background: linear-gradient(130deg, rgba(8, 2, 130, .84), rgba(0, 169, 235, .6)),  var(--page-img) center/cover no-repeat;
  color: #fff;
  position: relative
}

#rooms{
   background: linear-gradient(130deg, rgba(8, 2, 130, .84), rgba(0, 169, 235, .6)),  url('../img/TRIPLE\ BED\ ROOM.JPG') center/cover no-repeat;

  background-size: cover;
  background-position: center;

}
#contactus{
     background: linear-gradient(130deg, rgba(8, 2, 130, .84), rgba(0, 169, 235, .6)),  url('../img/contactus.jpeg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
}
#booking{
      background: linear-gradient(130deg, rgba(8, 2, 130, .84), rgba(0, 169, 235, .6)),  url('../img/booking.JPG') center/cover no-repeat;
    background-size: cover;
    background-position: center;
}

.page-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 90px;

}

.page-hero .container {
  position: relative;
  z-index: 2
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.05;
  margin: 10px 0
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .9)
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #e4f8ff;
  font-weight: 700;
  font-size: 14px
}

.breadcrumb a:hover {
  text-decoration: underline
}

.form-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px
}

.contact-panel,
.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-soft)
}

.contact-panel h3,
.booking-form h3 {
  font-size: 27px;
  color: var(--secondary);
  margin-bottom: 16px
}
.booking-form button {
     margin-top: 10px;
}


.contact-list {
  display: grid;
  gap: 14px
}

.contact-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line)
}

.contact-list i {
  color: var(--primary-dark);
  font-size: 20px;
  margin-top: 3px
}

.contact-list strong {
  display: block
}

.contact-list span {
  color: var(--muted);
  font-size: 14px
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.field {
  display: grid;
  gap: 7px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-weight: 800;
  color: #334155;
  font-size: 13px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font-family: inherit;
  outline: none;
  transition: .25s;
  background: #fbfeff
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 169, 235, .10)
}

.field textarea {
  min-height: 130px;
  resize: vertical
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px
}

.map-card {
  height: 500px;
  border-radius: 28px;
  background: linear-gradient(145deg, #eaf8fe, #fff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-soft)
}

.map-card i {
  font-size: 48px;
  color: var(--primary-dark);
  margin-bottom: 12px
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--secondary);
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  z-index: 10000;
  transform: translateY(140%);
  transition: .35s
}

.toast.show {
  transform: translateY(0)
}

.footer {
  background: #071232;
  color: #fff;
  padding: 70px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 28px
}

.footer h3 {
  margin-bottom: 15px
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, .74);
  font-size: 14px
}

.footer a:hover {
  color: #fff
}

.footer-links {
  display: grid;
  gap: 9px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px
}

.footer-logo .brand-icon {
  width: 48px;
  height: 48px
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .1);
  display: grid;
  place-items: center
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .75s ease
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:980px) {
  .hamburger {
    display: grid;
    place-items: center
  }

  .nav-menu {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 90px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch
  }

  .nav-menu.open {
    display: flex
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--soft);
    margin: 6px 0 0
  }

  .book-top {
    margin: 8px 0 0;
    text-align: center
  }

  .hero-grid,
  .about-grid,
  .form-wrap {
    grid-template-columns: 1fr
  }

  .hero {
    min-height: auto
  }

  .hero-panel {
    max-width: 560px
  }

  .quick-grid,
  .icon-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .room-grid,
  .card-grid,
  .place-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta {
    grid-template-columns: 1fr
  }

  .photo-stack {
    min-height: 410px
  }
}

@media(max-width:620px) {
  .nav {
    height: 74px
  }

  .brand-text strong {
    font-size: 16px
  }

  .brand-icon {
    width: 48px;
    height: 48px
  }

  .hero {
    padding: 125px 0 70px
  }

  .hero h1 {
    letter-spacing: -1px
  }

  .hero-panel img {
    height: 250px
  }

  .hero-mini {
    grid-template-columns: 1fr
  }

  .quick-grid,
  .room-grid,
  .card-grid,
  .icon-grid,
  .place-grid,
  .gallery-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr
  }

  .gallery-item.tall {
    grid-row: auto
  }

  .gallery-grid {
    grid-auto-rows: 245px
  }

  .section {
    padding: 64px 0
  }

  .quick-card {
    margin-top: -36px
  }

  .cta {
    padding: 30px
  }

  .room-foot {
    align-items: flex-start;
    flex-direction: column
  }

  .footer-bottom {
    display: block
  }

  .photo-stack .big {
    width: 100%;
    height: 310px
  }

  .photo-stack .small {
    width: 55%;
    height: 180px
  }

  .floating-badge {
    left: 15px;
    bottom: 12px
  }
}

/* =========================================================
   ROOMS PAGE — REFERENCE-STYLE HONEYCOMB LAYOUT
   ========================================================= */

.rooms-breadcrumb-bar {
  padding-top: 82px;
  background: #fff;
  border-bottom: 1px solid #d9e6ee;
}

.rooms-breadcrumb-bar .container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rooms-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #667285;
  font-size: 14px;
  font-weight: 500;
}

.rooms-breadcrumb a {
  transition: .25s ease;
}

.rooms-breadcrumb a:hover {
  color: var(--primary-dark);
}

.rooms-breadcrumb i {
  color: #93a1b3;
  font-size: 11px;
}

.rooms-breadcrumb span {
  color: var(--primary-dark);
  font-weight: 700;
}

.rooms-reference-section {
  min-height: 630px;
  display: grid;
  align-items: center;
  padding: 82px 0 76px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 23%, rgba(0, 169, 235, .10), transparent 24%),
    radial-gradient(circle at 11% 86%, rgba(8, 2, 130, .06), transparent 25%),
    #fff;
}

.rooms-reference-section::before {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -155px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(0, 169, 235, .12);
  border-radius: 50%;
}

.rooms-reference-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 52px;
  align-items: center;
}

.rooms-reference-content {
  max-width: 530px;
}

.rooms-reference-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rooms-reference-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.rooms-reference-content h1 {
  margin: 8px 0 8px;
  color: #050b14;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -1.2px;
}

.rooms-reference-intro {
  max-width: 510px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.rooms-reference-block + .rooms-reference-block {
  margin-top: 20px;
}

.rooms-reference-block h2 {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 8px;
  color: #081526;
  font-size: 20px;
  line-height: 1.3;
}

.rooms-reference-block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 20px;
  background: var(--primary);
}

.rooms-reference-list {
  display: grid;
  gap: 6px;
}

.rooms-reference-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #28364b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.rooms-reference-list a {
  transition: .25s ease;
}

.rooms-reference-list a:hover {
  color: var(--primary-dark);
  padding-left: 3px;
}

.rooms-reference-list i {
  margin-top: 5px;
  color: var(--primary-dark);
  font-size: 11px;
}

.rooms-reference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rooms-reference-outline {
  color: var(--secondary);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.rooms-reference-outline:hover {
  color: #fff;
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

/* Honeycomb */
.rooms-hex-wrap {
  width: 100%;
  display: grid;
  justify-items: center;
}

.rooms-hex-gallery {
  position: relative;
  width: 650px;
  height: 515px;
  max-width: 100%;
}

.rooms-hex-card {
  position: absolute;
  width: 190px;
  height: 200px;
  padding: 0;
  border: 9px solid #fff;
  clip-path: polygon(25% 0, 75% 0, 100% 24%, 100% 76%, 75% 100%, 25% 100%, 0 76%, 0 24%);
  overflow: hidden;
  cursor: pointer;
  background: #e8f6fc;
  box-shadow: 0 18px 36px rgba(11, 57, 91, .16);
  transition: transform .34s ease, filter .34s ease;
  isolation: isolate;
}

.rooms-hex-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 12, 25, .72));
  opacity: 0;
  transition: .3s ease;
}

.rooms-hex-card:hover,
.rooms-hex-card:focus-visible {
  z-index: 12;
  outline: none;
  transform: translateY(-8px) scale(1.045);
  filter: saturate(1.08);
}

.rooms-hex-card:hover::before,
.rooms-hex-card:focus-visible::before {
  opacity: 1;
}

.rooms-hex-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.rooms-hex-card:hover img,
.rooms-hex-card:focus-visible img {
  transform: scale(1.1);
}

.rooms-hex-card span {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  width: max-content;
  max-width: 82%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: .3s ease;
}

.rooms-hex-card:hover span,
.rooms-hex-card:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.rooms-hex-featured {
  width: 206px;
  height: 231px;
  z-index: 4;
}

/* Honeycomb image positions */
.rooms-hex-1 { left: 115px; top: 0; }
.rooms-hex-2 { left: 320px; top: 0; }
.rooms-hex-3 { left: 12px; top: 140px; }
.rooms-hex-4 { left: 218px; top: 153px; }
.rooms-hex-5 { left: 435px; top: 158px; }
.rooms-hex-6 { left: 115px; top: 316px; }
.rooms-hex-7 { left: 320px; top: 316px; }

.rooms-hex-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 10px 15px;
  color: #657386;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 600;
}

.rooms-hex-note i {
  color: var(--primary-dark);
  font-size: 15px;
}

/* Cards and CTA */
.rooms-card-section {
  border-top: 1px solid var(--line);
}

.rooms-booking-cta-section {
  padding: 0 0 84px;
}

.rooms-booking-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 38px 42px;
  color: #fff;
  border-radius: 28px;
  background: linear-gradient(120deg, var(--secondary), var(--primary-dark), var(--primary));
  box-shadow: var(--shadow);
}

.rooms-booking-cta::before,
.rooms-booking-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
}

.rooms-booking-cta::before {
  width: 230px;
  height: 230px;
  right: 60px;
  top: -160px;
}

.rooms-booking-cta::after {
  width: 140px;
  height: 140px;
  right: -55px;
  bottom: -65px;
}

.rooms-booking-cta > * {
  position: relative;
  z-index: 2;
}

.rooms-booking-cta span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.rooms-booking-cta h2 {
  max-width: 740px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

/* youtube section */
.place-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}
.place-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  height: 280px
}

.section {
  padding: 80px 0
}

.section.soft {
  background: var(--light)
}

.section-title {
  text-align: center;
  margin-bottom: 40px
}

.section-title span {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #050b14;
  line-height: 1.2;
  margin: 8px 0 12px
}

.section-title p {
  max-width: 760px;
  margin: auto;
  color: var(--muted)
}



/* Lightbox */
body.rooms-lightbox-open {
  overflow: hidden;
}

.rooms-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 70px 92px;
  background: rgba(2, 8, 24, .91);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.rooms-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.rooms-lightbox figure {
  width: min(980px, 100%);
  margin: 0;
  text-align: center;
  transform: scale(.94);
  transition: .3s ease;
}

.rooms-lightbox.open figure {
  transform: scale(1);
}

.rooms-lightbox figure img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border: 7px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.rooms-lightbox figcaption {
  margin-top: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.rooms-lightbox-close,
.rooms-lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .10);
  cursor: pointer;
  transition: .25s ease;
}

.rooms-lightbox-close:hover,
.rooms-lightbox-nav:hover {
  color: var(--secondary);
  background: #fff;
}

.rooms-lightbox-close {
  top: 25px;
  right: 28px;
  font-size: 21px;
}

.rooms-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
}

.rooms-lightbox-prev {
  left: 24px;
}

.rooms-lightbox-next {
  right: 24px;
}

@media (max-width: 1100px) {
  .rooms-reference-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
  }

  .rooms-hex-gallery {
    width: 555px;
    height: 455px;
    margin: -28px -35px;
    transform: scale(.88);
    transform-origin: center;
  }
}

@media (max-width: 980px) {
  .rooms-reference-section {
    padding-top: 68px;
  }

  .rooms-reference-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .rooms-reference-content {
    max-width: 720px;
  }

  .rooms-hex-wrap {
    overflow: hidden;
  }

  .rooms-hex-gallery {
    margin: 0;
    transform: none;
  }

  .rooms-booking-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .rooms-breadcrumb-bar {
    padding-top: 74px;
  }

  .rooms-breadcrumb-bar .container {
    min-height: 66px;
  }

  .rooms-reference-section {
    padding: 58px 0 62px;
  }

  .rooms-reference-content h1 {
    font-size: 39px;
  }

  .rooms-reference-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rooms-reference-actions .btn {
    width: 100%;
  }

  .rooms-hex-gallery {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .rooms-hex-card,
  .rooms-hex-featured {
    position: relative;
    inset: auto;
    width: 100%;
    height: 210px;
    border: 5px solid #fff;
    clip-path: none;
    border-radius: 22px;
  }

  .rooms-hex-card::before {
    opacity: 1;
  }

  .rooms-hex-card span {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .rooms-hex-note {
    margin-top: 20px;
  }

  .rooms-booking-cta-section {
    padding-bottom: 64px;
  }

  .rooms-booking-cta {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .rooms-lightbox {
    padding: 72px 18px 30px;
  }

  .rooms-lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .rooms-lightbox-prev {
    left: calc(50% - 60px);
  }

  .rooms-lightbox-next {
    right: calc(50% - 60px);
  }
}

@media (max-width: 460px) {
  .rooms-hex-gallery {
    grid-template-columns: 1fr;
  }

  .rooms-hex-card,
  .rooms-hex-featured {
    height: 245px;
  }
}

/* =========================================================
   FINAL FIX — PERFECT 2 / 3 / 2 HONEYCOMB WITHOUT OVERLAP
   ========================================================= */

@media (min-width: 701px) {
  .rooms-hex-wrap {
    width: 100%;
    overflow: visible;
    display: grid;
    justify-items: center;
  }

  .rooms-hex-gallery {
    position: relative;
    width: 534px;
    height: 594px;
    max-width: 100%;
    margin: 0;
    transform: none;
  }

  .rooms-hex-card,
  .rooms-hex-featured {
    position: absolute;
    width: 170px;
    height: 190px;
    padding: 0;
    border: 6px solid #ffffff;
    border-radius: 0;
    clip-path: polygon(
      25% 0,
      75% 0,
      100% 50%,
      75% 100%,
      25% 100%,
      0 50%
    );
    overflow: hidden;
    background: #e8f6fc;
    box-shadow: 0 12px 26px rgba(11, 57, 91, .14);
  }

  .rooms-hex-featured {
    z-index: 1;
  }

  .rooms-hex-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Row 1 — two cards */
  .rooms-hex-1 {
    left: 91px;
    top: 0;
  }

  .rooms-hex-2 {
    left: 273px;
    top: 0;
  }

  /* Row 2 — three cards */
  .rooms-hex-3 {
    left: 0;
    top: 202px;
  }

  .rooms-hex-4 {
    left: 182px;
    top: 202px;
  }

  .rooms-hex-5 {
    left: 364px;
    top: 202px;
  }

  /* Row 3 — two cards */
  .rooms-hex-6 {
    left: 91px;
    top: 404px;
  }

  .rooms-hex-7 {
    left: 273px;
    top: 404px;
  }

  .rooms-hex-note {
    margin-top: 18px;
  }
}

/* Keep the full honeycomb inside smaller laptop/tablet widths */
@media (min-width: 701px) and (max-width: 1080px) {
  .rooms-hex-gallery {
    width: 480px;
    height: 534px;
    transform: scale(.9);
    transform-origin: top center;
    margin-bottom: -54px;
  }
}

/* Logo background same as Book Online Now button */
.brand {
  background: #00a9eb;
  padding: 3px 3px;
  border-radius: 14px;
  box-shadow: 0 15px 15px rgba(0, 169, 235, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 150px;
  height: 80px;
  border-radius: 15px;
  object-fit: contain;
  display: block;
  padding: 0;
  background: transparent;
  border: none;
}
/* footer logo */
/* Logo background same as Book Online Now button */
.footer-brand{
  background: #00a9eb;
  padding: 5px 5px;
  border-radius: 14px;
  width: 150px;
 
  box-shadow: 0 15px 15px rgba(0, 169, 235, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo{
  width: 150px;
  height: 80px;
  border-radius: 15px;
  object-fit: contain;
  display: block;
  padding: 0;
  background: transparent;
  border: none;
}

/* group hotels */
.hotel-switch {
  background: #fff;
  padding: 80px 0
}

.hotel-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}

.hotel-card {
  --main-color: #9b0000;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  color: #222;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  transition: .35s;
  position: relative;
  border: 1px solid #eee
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .18)
}

.hotel-card.red {
  --main-color: #9b0000
}

.hotel-card.blue {
  --main-color: #079bd0
}

.hotel-card.gold {
  --main-color: #d6a900
}

.hotel-card-image {
  height: 220px;
  overflow: hidden;
  position: relative
}

.hotel-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .45))
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.08)
}

/* Common hotel logo position */
.hotel-logo {
  position: absolute;
  top: 110px;
  left: 10px;
  z-index: 3;
}

/* Anvi Guest House card logo wrapper */
.hotel-card.gold .hotel-logo {
  top: 120px;
  left: 130px;
  transform: translateX(-50%);
padding-right: 40px;
  width: 235px;
  height: 125px;
}

/* Anvi logo box */
.hotel-card.gold .logo-mrv {
  background: #fff;
  color: #116037;
  padding-top: 15px;
  padding: 10px 10px ;
  font-size: 24px;
  line-height: 1;
  font-family: Georgia, serif;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
  white-space: nowrap
}

/* Actual Anvi logo image */
.hotel-card.gold .logo-mrv img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
}
.hotel-card.gold .logo-mrv {

  color: #fff
}
.hotel-card.gold .logo-mrv span {
  color: #ffe45c
}

.logo-box {
  background: #fff;
  color: #116037;
  padding-top: 15px;
  padding: 16px 15px ;
  font-size: 24px;
  line-height: 1;
  font-family: Georgia, serif;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
  white-space: nowrap
}


.logo-box span {
  display: block;
  font-size: 11px;
  margin-top: 5px;
  color: var(--main-color);
  font-family: Poppins, sans-serif;
  font-weight: 700
}

.hotel-card.blue .logo-box {
  background: #0baee0;
  color: #fff
}

.hotel-card.blue .logo-box span {
  color: #fff
}

.hotel-card.gold .logo-box {
  background: #e52d2d;
  color: #fff
}

.hotel-card.gold .logo-box span {
  color: #ffe45c
}

.hotel-card-content {
  padding: 58px 26px 30px;
  position: relative
}

.hotel-card-content::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 26px;
  width: 52px;
  height: 4px;
  background: var(--main-color);
  border-radius: 10px
}

.hotel-card-title {
  color: #111;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px
}

.hotel-card-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  min-height: 56px;
  margin-bottom: 20px;
  font-weight: 500
}

.hotel-card .btn {
  background: #fff;
  color: var(--main-color);
  min-width: 135px;
  padding: 11px 22px;
  border-radius: 30px;
  border: 2px solid var(--main-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: .3s
}

.hotel-card .btn:hover {
  background: var(--main-color);
  color: #fff
}