/* ===========================
   HOTEL MADHUBAN - STYLESHEET
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #e8c96e;
  --dark: #1a1a1a;
  --dark2: #111111;
  --text: #555;
  --light: #f9f6f0;
  --white: #ffffff;
  --border: #e5ddd0;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.25;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
  position: relative;
}

.section-title span { color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.75rem auto 2rem;
}

.divider::before, .divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.divider span {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===========================
   NAVIGATION
   =========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 0;
  transition: var(--transition);
  background: rgba(17,17,17,0.25);
  backdrop-filter: blur(4px);
}

#navbar.transparent {
  background: rgba(17,17,17,0.25);
  backdrop-filter: blur(4px);
}

#navbar.scrolled {
  background: rgba(15,15,15,0.98);
  backdrop-filter: blur(16px);
  padding: 0.65rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-logo .logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--gold); }

.nav-menu > li > a::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.nav-menu > li > a:hover::after { transform: scaleX(1); }

.nav-book { margin-left: 0.75rem; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone i { color: var(--gold); }
.nav-phone span { color: var(--gold); font-weight: 500; }

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  width: 42px;
  height: 38px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
  margin: 0 auto;
}

.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 close button */
.nav-close {
  display: none;
  position: fixed;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10002;
}

/* ===========================
   HERO SLIDER
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.1rem;
  transition: var(--transition);
}

.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

/* Booking Bar */
.booking-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  background: rgba(17,17,17,0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,0.25);
}

.booking-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-field {
  flex: 1;
  min-width: 160px;
}

.booking-field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.booking-field input,
.booking-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

.booking-field input::-webkit-calendar-picker-indicator { filter: invert(1) brightness(0.7); }
.booking-field select option { background: var(--dark); }
.booking-field input:focus,
.booking-field select:focus { border-color: var(--gold); }

/* ===========================
   SECTIONS - GENERAL
   =========================== */
.section {
  padding: 6rem 0;
}

.section-alt { background: var(--light); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }

/* ===========================
   WELCOME SECTION
   =========================== */
.welcome {
  padding: 6rem 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.welcome-images {
  position: relative;
  height: 520px;
}

.welcome-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.welcome-img-sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.welcome-badge {
  position: absolute;
  right: 0;
  bottom: 40px;
  background: var(--gold);
  color: var(--dark);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.welcome-badge .num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.welcome-badge .txt { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; }

.welcome-text { padding: 1rem 0; }

.welcome-text p { margin-bottom: 1.25rem; }

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}

.welcome-feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.welcome-feat-item i { color: var(--gold); font-size: 0.9rem; }

/* ===========================
   ROOMS SECTION
   =========================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
}

.room-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.room-body {
  padding: 1.75rem;
}

.room-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.room-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1rem;
}

.room-meta span { display: flex; align-items: center; gap: 0.3rem; }
.room-meta i { color: var(--gold); }

.room-body p { font-size: 0.88rem; margin-bottom: 1.25rem; color: var(--text); }

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.room-price { font-family: 'Playfair Display', serif; }
.room-price .amt { font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.room-price .per { font-size: 0.75rem; color: #888; display: block; }

/* ===========================
   SERVICES / AMENITIES
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}

.service-card:hover::before { transform: scaleY(1); }

.service-card * { position: relative; z-index: 1; }

.service-card:hover h4,
.service-card:hover p,
.service-card:hover .svc-icon { color: var(--dark); }

.svc-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.service-card p {
  font-size: 0.84rem;
  transition: var(--transition);
}

/* ===========================
   SPECIAL OFFERS
   =========================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  height: 300px;
}

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.offer-tag {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.offer-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.offer-overlay p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--dark);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.stat-item .label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--light); padding: 6rem 0; }

.testimonials-slider { position: relative; overflow: hidden; }

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-item {
  min-width: 100%;
  padding: 0 2rem;
}

.testimonial-card {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 3rem;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  line-height: 1;
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1.25rem; }

.testimonial-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.7;
}

.reviewer { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.reviewer img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.reviewer-loc { font-size: 0.78rem; color: #888; }

.t-arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.t-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.t-arrow:hover { background: var(--gold); color: var(--dark); }

/* ===========================
   GALLERY PREVIEW
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 0.5rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.5);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after { opacity: 1; }

/* ===========================
   NEARBY ATTRACTIONS
   =========================== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.attraction-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.attraction-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.att-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border-radius: 2px;
}

.att-info h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.att-info p { font-size: 0.82rem; color: var(--text); margin-bottom: 0.4rem; }
.att-dist { font-size: 0.75rem; color: var(--gold); font-weight: 600; }

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}

.contact-info h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 1.1rem;
}

.contact-detail-text h5 { font-size: 0.88rem; color: var(--dark); margin-bottom: 0.2rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.contact-detail-text p, .contact-detail-text a { font-size: 0.88rem; color: var(--text); }
.contact-detail-text a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }

.social-link {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* Contact Form */
.contact-form { background: var(--light); padding: 3rem; }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

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

/* ===========================
   MAP
   =========================== */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 420px; border: none; }

/* ===========================
   FAQ
   =========================== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: color 0.3s;
}

.faq-question:hover, .faq-item.open .faq-question { color: var(--gold); }

.faq-question i {
  transition: transform 0.35s;
  font-size: 0.85rem;
  color: var(--gold);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
  font-size: 0.9rem;
}

.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }

/* ===========================
   NEWSLETTER
   =========================== */
.newsletter {
  background: var(--dark);
  padding: 5rem 0;
  text-align: center;
}

.newsletter .section-title { color: var(--white); }

.newsletter p { color: rgba(255,255,255,0.65); max-width: 450px; margin: 0 auto 2.5rem; }

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.4);
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

.newsletter-form .btn { border-radius: 0; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0d0d0d;
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about .f-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.3rem; }
.footer-about .f-tag { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.footer-about p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; line-height: 1.8; }

.footer-col h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 1px;
  background: var(--gold);
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-links a i { font-size: 0.65rem; color: var(--gold); }

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact li i { color: var(--gold); margin-top: 2px; min-width: 14px; }
.footer-contact li a { color: rgba(255,255,255,0.5); }
.footer-contact li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.75));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(201,168,76,0.3);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ===========================
   FLOATING BUTTONS
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,0.7); }

.call-float {
  position: fixed;
  bottom: 10rem;
  right: 1.5rem;
  z-index: 9998;
  width: 54px;
  height: 54px;
  background: #0078d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,120,212,0.5);
  transition: var(--transition);
  animation: pulse-call 2s infinite;
}

.call-float:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,120,212,0.7); }

@keyframes pulse-call {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,120,212,0.5); }
  50% { box-shadow: 0 6px 30px rgba(0,120,212,0.8), 0 0 0 8px rgba(0,120,212,0.15); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}

#scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

#scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#scroll-top:hover { background: var(--dark); color: var(--white); }

/* ===========================
   GALLERY PAGE
   =========================== */
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--border);
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-masonry .g-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-masonry .g-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-masonry .g-item:hover img { transform: scale(1.05); }

.gallery-masonry .g-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.45);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-masonry .g-item:hover::after { opacity: 1; }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* ===========================
   RESPONSIVE
   =========================== */

/* Tablet landscape */
@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .welcome-grid { gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 3; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(160deg, #0f0f0f 0%, #1a1208 60%, #0f0f0f 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 10000;
    overflow-y: auto;
    padding: 5rem 2rem 3rem;
  }
  .nav-menu.open { display: flex; }

  .nav-close { display: flex; }
  .nav-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

  .nav-menu > li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-menu > li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-menu > li > a {
    font-size: 1rem;
    padding: 1.1rem 2rem;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.18em;
    display: block;
    transition: var(--transition);
  }
  .nav-menu > li > a:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
  .nav-menu > li > a::after { display: none; }

  .nav-book {
    margin: 1.75rem 0 0;
    border: none;
  }
  .nav-book a {
    padding: 0.9rem 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }

  .hamburger { display: flex; }
  .nav-phone { display: none; }

  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-images { height: 320px; }
  .welcome-img-main { width: 85%; height: 280px; }
  .welcome-img-sub { width: 48%; height: 170px; }

  .offers-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .page-hero { height: 280px; }
  .page-hero-content h1 { font-size: 2rem; }

  .contact-form { padding: 2rem; }
  .testimonial-card { padding: 2.5rem 2rem; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 180px 180px; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; }
  .gallery-masonry { columns: 2; }
}

/* Mobile */
@media (max-width: 650px) {
  html { font-size: 15px; }

  .container { padding: 0 1.1rem; }
  .section { padding: 3.5rem 0; }

  /* Navbar */
  .nav-inner { padding: 0 1.1rem; }
  .nav-logo .logo-name { font-size: 1.25rem; }
  .nav-logo .logo-tag { font-size: 0.55rem; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-sub { font-size: 0.9rem; padding: 0 0.5rem; }
  .hero-label { font-size: 0.65rem; letter-spacing: 0.3em; }
  .hero-cta { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
  .slider-arrow { width: 38px; height: 38px; font-size: 0.9rem; }
  .slider-arrow.prev { left: 0.75rem; }
  .slider-arrow.next { right: 0.75rem; }

  /* Booking bar */
  .booking-bar { position: static; }
  .booking-bar-inner { flex-direction: column; padding: 1.25rem 1.1rem; gap: 0.85rem; }
  .booking-field { width: 100%; min-width: unset; }

  /* Welcome */
  .welcome-grid { grid-template-columns: 1fr; gap: 2rem; }
  .welcome-images { height: 260px; }
  .welcome-img-main { width: 90%; height: 220px; position: relative; right: auto; top: auto; }
  .welcome-img-sub { display: none; }
  .welcome-badge { bottom: auto; top: 1rem; right: 0.5rem; padding: 0.8rem 1rem; }
  .welcome-badge .num { font-size: 1.8rem; }
  .welcome-features { grid-template-columns: 1fr; gap: 0.6rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item .num { font-size: 2.2rem; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .room-body { padding: 1.25rem; }
  .room-footer { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .service-card { padding: 1.75rem 1rem; }
  .svc-icon { font-size: 2rem; }

  /* Offers */
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card { height: 240px; }

  /* Testimonials */
  .testimonial-card { padding: 2rem 1.25rem; }
  .testimonial-card blockquote { font-size: 0.92rem; }
  .testimonial-item { padding: 0 0.5rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .gallery-item { height: 140px; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; height: 200px; }
  .gallery-masonry { columns: 2; column-gap: 0.5rem; }
  .gallery-filter { gap: 0.5rem; }
  .filter-btn { padding: 0.45rem 1rem; font-size: 0.72rem; }

  /* Attractions */
  .attractions-grid { grid-template-columns: 1fr; gap: 1rem; }
  .attraction-card { flex-direction: row; align-items: flex-start; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.5rem 1.1rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info h3 { font-size: 1.5rem; }

  /* Footer */
  .footer { padding: 3.5rem 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-bottom p { font-size: 0.75rem; }

  /* Page hero */
  .page-hero { height: 220px; }
  .page-hero-content { padding: 2rem 1.1rem; }
  .page-hero-content h1 { font-size: 1.7rem; }

  /* Floating buttons */
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 5rem; right: 1rem; }
  .call-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 9.5rem; right: 1rem; }
  #scroll-top { width: 38px; height: 38px; font-size: 0.9rem; bottom: 1rem; right: 1rem; }

  /* Map */
  .map-section iframe { height: 280px; }

  /* Section title */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .divider::before, .divider::after { width: 35px; }

  /* Buttons */
  .btn { padding: 0.75rem 1.5rem; font-size: 0.78rem; }
}

/* Inline grid utility used across inner pages */
.inline-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .inline-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .inline-grid-3 { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Very small phones */
@media (max-width: 380px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: span 1; }
  .hero-title { font-size: 1.75rem; }
  .call-float { right: 4.5rem; }
}
