/* ============================================================
   HOTEL YATHARTH INN — Premium Professional Redesign
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --gold: #c9973a;
  --gold-light: #e8c070;
  --gold-dark: #9a6e22;
  --gold-pale: #fdf3e0;
  --crimson: #8b1a1a;
  --crimson-light: #b52a2a;
  --deep: #0f0a04;
  --dark: #1c1408;
  --mid: #2e2010;
  --cream: #fdf8f0;
  --cream2: #f7ede0;
  --white: #ffffff;
  --text: #2a1f0e;
  --text-mid: #5a4530;
  --text-light: #8a7060;
  --border: rgba(201, 151, 58, 0.2);
  --border-strong: rgba(201, 151, 58, 0.45);
  --shadow-sm: 0 2px 16px rgba(15, 10, 4, 0.08);
  --shadow-md: 0 8px 40px rgba(15, 10, 4, 0.14);
  --shadow-lg: 0 20px 60px rgba(15, 10, 4, 0.22);
  --nav-h: 82px;
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;

}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.15;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}
/* changes */
.container {
  width: 100%;
  max-width: 1200px; /* optional */
  margin: 0 auto;
  padding: 0 32px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201, 151, 58, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 151, 58, 0.55);
}
.btn-crimson {
  background: linear-gradient(135deg, var(--crimson-light), var(--crimson));
  color: var(--white);
}
.btn-crimson:hover {
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--deep);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* LABELS */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.tag::before,
.tag::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.tag-left {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 5vw, 52px);
  color: var(--deep);
  margin-bottom: 18px;
}
.section-title.white {
  color: var(--white);
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.divider-left .divider-line {
  flex: 0 0 50px;
}
.section-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 600px;
}

/* HEADER */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all 0.4s ease;
}
#header.scrolled {
  background: rgba(15, 10, 4, 0.97);
  backdrop-filter: blur(12px);
  height: 68px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

/* changes */
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
   flex-wrap: nowrap;
}
/* @media (max-width: 900px) {
  .nav-links {
    display: none;
  }
} */
@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .nav-logo img{
    display: none;
  }

}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-logo img{
    display: block;
  }

}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 62px;
  width: auto;
  transition: all var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  /* display: none; */
}
#header.scrolled .nav-logo img {
  height: 50px;
}
.nav-logo:hover img {
  transform: scale(1.04);
}
.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  display: block;
  letter-spacing: 0.5px;
}
.logo-sub {
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}
/* change */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links > li > a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 13px;
  position: relative;
  transition: color var(--transition);
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 13px;
  right: 13px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links > li > a:hover {
  color: var(--gold-light);
}
.nav-links > li > a:hover::after {
  transform: scaleX(1);
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(15, 10, 4, 0.97);
  backdrop-filter: blur(12px);
  min-width: 190px;
  border-top: 2px solid var(--gold);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  color: var(--gold-light);
  padding-left: 28px;
}

/* changes */
.nav-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  white-space: nowrap; /* text break nahi hoga */
  padding: 8px 16px !important; /* thoda chhota karo */
  border-radius: var(--radius) !important;
}
.nav-book::after {
  display: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 8, 2, 0.98);
  z-index: 998;
  padding: 30px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open {
  display: block;
  transform: translateX(0);
}
.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-nav a:hover {
  color: var(--gold-light);
}

/* .mob-book{
  display: flex;
  font-size: 2px;
} */

/* changes */
/* HERO */
.hero {
  height: 100vh;
  min-height: 750px;
  position: relative;
  overflow: hidden;
}
.hero-track {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide:nth-child(1) {
  background-image: url("../img/hero-1.JPG");
}
.hero-slide:nth-child(2) {
  background-image: url("../img/hero-2.JPG");
}
.hero-slide:nth-child(3) {
  background-image: url("../img/hero-3.JPG");
}
.hero-slide:nth-child(4) {
  background-image: url("../img/hero-4.JPG");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 6, 2, 0.75) 0%,
    rgba(10, 6, 2, 0.45) 60%,
    rgba(10, 6, 2, 0.2) 100%
  );
}
.hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 6, 2, 0.65) 0%, transparent 50%);
}
.hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-h) 0 80px;
  z-index: 5;
}
.hero-body .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-tag::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6.5vw, 78px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  max-width: 750px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
}
.hero-counter {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-counter-num {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}
.hero-counter-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 46px;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll-cue span {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  to {
    left: 100%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BOOKING BAR */
.booking-bar {
  background: var(--dark);
  position: relative;
  z-index: 50;
}
.booking-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--crimson),
    var(--gold),
    var(--crimson)
  );
}
.booking-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.bk-field {
  flex: 1;
  min-width: 140px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background var(--transition);
}
.bk-field:hover {
  background: rgba(255, 255, 255, 0.03);
}
.bk-field label {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.bk-field input,
.bk-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 13.5px;
  cursor: pointer;
  width: 100%;
}
.bk-field select option {
  background: var(--dark);
}
.bk-submit {
  padding: 0 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  min-width: 160px;
}
.bk-submit:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 30px rgba(201, 151, 58, 0.4);
}

/* ABOUT */
.about-section {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-bg-word {
  position: absolute;
  top: 20px;
  right: -30px;
  font-family: "Playfair Display", serif;
  font-size: 160px;
  font-weight: 700;
  color: rgba(201, 151, 58, 0.04);
  pointer-events: none;
  letter-spacing: 10px;
  line-height: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 540px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 76%;
  height: 84%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 54%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-frame {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 76%;
  height: 84%;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 90px;
  left: -20px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  color: var(--white);
  padding: 18px 22px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge-text {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  opacity: 0.9;
}
.about-content .section-desc {
  margin-bottom: 14px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 26px 0;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
}
.feat-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.phone-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.phone-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.phone-num {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--deep);
  font-weight: 600;
  display: block;
}

/* ROOMS */
.rooms-section {
  padding: 110px 0;
  background: var(--cream);
}
/* changes */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 16px;
}
@media (max-width: 400px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .nav-logo img {

  display: none;
}

}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.room-thumb {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.room-card:hover .room-thumb img {
  transform: scale(1.08);
}
.room-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
}
.room-body {
  padding: 30px;
}
.room-body h3 {
  font-size: 26px;
  color: var(--deep);
  margin-bottom: 10px;
}
.room-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.room-tag {
  font-size: 11.5px;
  color: var(--text-mid);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: 100px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

/* SERVICES */
.services-section {
  padding: 110px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 16px;
}
.svc-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.svc-item:hover {
  background: linear-gradient(135deg, var(--gold-pale), var(--cream));
}
.svc-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all var(--transition);
}
.svc-item:hover .svc-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 151, 58, 0.35);
  transform: scale(1.1);
}
.svc-item h5 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--deep);
  margin-bottom: 10px;
}
.svc-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* STATS */
.stats-band {
  padding: 70px 0;
  background: linear-gradient(
    135deg,
    var(--crimson) 0%,
    #5a0f0f 50%,
    var(--crimson) 100%
  );
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item:last-child {
  border: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-num span {
  color: var(--gold-light);
}
.stat-label {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* TESTIMONIALS */
.testi-section {
  padding: 110px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.testi-section::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 500px;
  color: rgba(201, 151, 58, 0.04);
  position: absolute;
  top: -100px;
  left: -20px;
  line-height: 1;
  pointer-events: none;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 151, 58, 0.15);
  padding: 38px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(201, 151, 58, 0.35);
  transform: translateY(-4px);
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-stars span {
  color: var(--gold);
  font-size: 14px;
}
.testi-quote {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 18px;
  display: block;
  opacity: 0.7;
}
.testi-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.testi-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.testi-role {
  font-size: 11.5px;
  color: var(--gold-light);
}

/* ATTRACTIONS */
.attractions-section {
  padding: 110px 0;
  background: var(--cream2);
}
.attr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: center;
}
.attr-grid.flip {
  direction: rtl;
}
.attr-grid.flip > * {
  direction: ltr;
}
.attr-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.attr-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.attr-img:hover img {
  transform: scale(1.05);
}
.attr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 6, 2, 0.75) 0%, transparent 55%);
}
.attr-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
}
.attr-label .tag-left {
  color: var(--gold-light);
  margin-bottom: 4px;
}
.attr-label h4 {
  font-size: 22px;
  color: var(--white);
}
.attr-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.82;
  margin-bottom: 26px;
}

/* CTA BAND */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark), var(--mid), var(--dark));
  text-align: center;
}
.cta-band .section-desc {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--deep);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.5fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.45);
  margin: 16px 0 26px;
}
.footer-brand .nav-logo img {
  height: 58px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-col h5 {
  font-family: "Outfit", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links li {
  margin-bottom: 11px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.fc-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.fc-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}
.fc-row span,
.fc-row a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
.fc-row a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.28);
  flex-wrap: wrap;
  gap: 10px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-tooltip {
  background: var(--deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c3e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  position: relative;
}
.wa-btn:hover {
  transform: scale(1.1);
}
.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}
.wa-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* PAGE BANNER */
.page-banner {
  height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding-top: var(--nav-h);
  text-align: center;
  overflow: hidden;
}
.pb-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.pb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 6, 2, 0.65),
    rgba(10, 6, 2, 0.75)
  );
}
.pb-content {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  font-size: clamp(38px, 6vw, 64px);
  color: var(--white);
  font-weight: 400;
}
.breadcrumb {
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a {
  color: var(--gold-light);
}

/* ABOUT PAGE */
.about-page-section {
  padding: 100px 0;
}
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-page-img {
  position: relative;
}
.about-page-img img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-page-img::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 2px solid rgba(201, 151, 58, 0.35);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.why-section {
  padding: 90px 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  padding: 36px 26px;
  border-radius: var(--radius-lg);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-num {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  color: var(--border-strong);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}
.why-card h4 {
  font-size: 19px;
  color: var(--deep);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ROOM DETAIL */
.room-detail-section {
  padding: 90px 0;
}
.rdg {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: start;
}
.rdg-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
}
.rdg-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.rdg-thumbs img {
  width: 100%;
  height: 115px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0.65;
  transition: opacity var(--transition);
  border: 2px solid transparent;
}
.rdg-thumbs img:hover {
  opacity: 1;
  border-color: var(--gold);
}
.room-info h2 {
  font-size: 44px;
  color: var(--deep);
  margin-bottom: 14px;
}
.room-info > p {
  font-size: 14px;
  line-height: 1.82;
  color: var(--text-light);
  margin-bottom: 26px;
}
.room-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.rm-item {
  background: var(--cream);
  padding: 15px 18px;
  border-radius: var(--radius);
}
.rm-item span {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}
.rm-item strong {
  font-size: 14px;
  color: var(--deep);
}
.amenities h4 {
  font-size: 20px;
  color: var(--deep);
  margin-bottom: 14px;
}
.amenities ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  list-style: none;
  margin-bottom: 30px;
}
.amenities li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.amenities li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}
.room-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* GALLERY */
.gallery-section {
  padding: 80px 0;
}
.gtabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.gtab {
  padding: 9px 26px;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-mid);
  border-radius: 100px;
}
.gtab.active,
.gtab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201, 151, 58, 0.35);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-lg);
}
.g-item img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.g-item:hover img {
  transform: scale(1.08);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 2, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.g-item:hover .g-overlay {
  opacity: 1;
}
.g-overlay span {
  font-size: 34px;
  color: var(--white);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lb-close {
  position: absolute;
  top: 22px;
  right: 28px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all var(--transition);
}
.lb-close:hover {
  background: var(--gold);
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.lb-nav:hover {
  background: var(--gold);
}
.lb-prev {
  left: 24px;
}
.lb-next {
  right: 24px;
}

/* CONTACT */
.contact-section {
  padding: 90px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.contact-info h3 {
  font-size: 38px;
  color: var(--deep);
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.ci-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.ci-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius);
  font-size: 18px;
}
.ci-text label {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}
.ci-text p,
.ci-text a {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.ci-text a:hover {
  color: var(--gold);
}
.contact-form-box {
  background: var(--cream);
  padding: 46px;
  border-radius: var(--radius-lg);
}
.contact-form-box h3 {
  font-size: 30px;
  color: var(--deep);
  margin-bottom: 30px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fgroup {
  margin-bottom: 18px;
}
.fgroup label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  outline: none;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
  border-radius: var(--radius);
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 151, 58, 0.1);
}
.fgroup textarea {
  resize: vertical;
  min-height: 110px;
}
.map-section {
  padding: 0 0 80px;
}
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  border-radius: var(--radius-lg);
}

/* ATTRACTIONS PAGE */
.attracts-section {
  padding: 80px 0;
}
.attract-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  background: var(--white);
}
.attract-card.rev {
  direction: rtl;
}
.attract-card.rev > * {
  direction: ltr;
}
.attract-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.attract-card-body {
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.attract-card-body h3 {
  font-size: 34px;
  color: var(--deep);
  margin-bottom: 14px;
}
.attract-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.82;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-l {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-l.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-r {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-r.visible {
  opacity: 1;
  transform: translateX(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .about-grid,
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-images {
    height: 400px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rdg {
    grid-template-columns: 1fr;
  }
  .attract-card {
    grid-template-columns: 1fr;
  }
  .attract-card img {
    height: 240px;
  }
  .attract-card.rev {
    direction: ltr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .attr-grid,
  .attr-grid.flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-inner {
    flex-direction: column;
  }
  .bk-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .bk-submit {
    padding: 18px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  :root {
    --nav-h: 68px;
  }
  .container {
    padding: 0 18px;
    width: 100%;
    max-width: 100%;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .contact-form-box {
    padding: 26px;
  }
  .hero-scroll-cue,
  .hero-counter {
    display: none;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .room-meta,
  .amenities ul {
    grid-template-columns: 1fr;
  }
  .room-btns {
    flex-direction: column;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
