/* ================================================================
   Hotel New Anand Kanchanpur — Main Stylesheet
   Brand Colors: Yellow #feba02 | Blue #0336b5 | Black | White
   Fonts: Playfair Display (headings) + Poppins (body)
================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --blue:         #0336b5;
  --blue-dark:    #022d9e;
  --blue-navy:    #01196a;
  --blue-mid:     #0a45d4;
  --blue-light:   #eef0ff;
  --blue-xlight:  #f4f6ff;

  --yellow:       #feba02;
  --yellow-dark:  #d99e00;
  --yellow-light: #fff8df;
  --yellow-xlight:#fffbf0;

  --black:        #000000;
  --white:        #ffffff;

  /* Neutral Grays */
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', 'Segoe UI', sans-serif;

  /* Sizing */
  --navbar-h:  80px;
  --max-w:     1200px;
  --section-y: 100px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.09);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.13);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.17);
  --shadow-blue: 0 4px 24px rgba(3,54,181,0.28);
  --shadow-yellow: 0 4px 24px rgba(254,186,2,0.40);

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast:   0.18s ease;
  --t-base:   0.30s ease;
  --t-slow:   0.50s ease;
  --t-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----------------------------------------------------------------
   2. CSS RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------
   4. UTILITY CLASSES
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-y) 0;
}

.section-sm {
  padding: 60px 0;
}

.section-bg-light {
  background-color: var(--gray-50);
}

.section-bg-blue-light {
  background-color: var(--blue-xlight);
}

.section-bg-dark {
  background-color: var(--blue-navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(254,186,2,0.12);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}

.section-title {
  color: inherit;
  margin-bottom: 16px;
}

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

.section-bg-dark .section-title span {
  color: var(--yellow);
}

.section-title-line {
  width: 56px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 14px auto 20px;
}

.section-header.left .section-title-line {
  margin-left: 0;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.section-bg-dark .section-subtitle {
  color: rgba(255,255,255,0.72);
}

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-yellow { color: var(--yellow); }
.text-blue   { color: var(--blue); }

/* ----------------------------------------------------------------
   5. BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--t-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(254,186,2,0.50);
}

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

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

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

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

.btn-lg {
  padding: 17px 42px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------------
   6. NAVIGATION
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: var(--blue);
  transition: box-shadow var(--t-base), background var(--t-base);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  background: var(--blue-dark);
}

.navbar-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.13);
}

.nav-cta {
  margin-left: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------------------------------
   7. HERO SECTIONS
---------------------------------------------------------------- */
/* Homepage full-screen hero */
.hero-home {
  position: relative;
  height: 100vh;
  height: 100svh; /* small viewport height — accounts for mobile browser chrome */
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-home .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/HNA.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-home.loaded .hero-bg {
  transform: scale(1);
}

.hero-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(1,25,106,0.70) 0%,
    rgba(3,54,181,0.50) 50%,
    rgba(1,10,40,0.60) 100%
  );
}

.hero-home .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.hero-home .hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.30);
}

.hero-home .hero-title span {
  color: var(--yellow);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  font-style: italic;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.40);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-dot::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0.3; }
}

/* Inner Page Hero */
.hero-page {
  position: relative;
  height: 56vh;
  min-height: 340px;
  max-height: 520px;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-h);
  overflow: hidden;
}

.hero-page .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(1,25,106,0.82) 0%,
    rgba(3,54,181,0.65) 100%
  );
}

.hero-page .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-page .hero-title {
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.70);
  margin-top: 8px;
}

.breadcrumb a {
  color: var(--yellow);
  transition: color var(--t-fast);
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.40); }

/* Rooms / Gallery / Attractions heroes — taller, subject-focused */
.rooms-hero,
.gallery-hero,
.attractions-hero {
  height: 68vh;
  min-height: 440px;
  max-height: 620px;
}

/* Lighter gradient overlay so subjects show through */
.rooms-hero .hero-overlay,
.gallery-hero .hero-overlay,
.attractions-hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(1,25,106,0.50) 0%,
    rgba(3,54,181,0.30) 45%,
    rgba(1,25,106,0.70) 100%
  );
}

/* ----------------------------------------------------------------
   8. WELCOME / INTRO SECTION
---------------------------------------------------------------- */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.welcome-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.welcome-image-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--yellow);
  color: var(--black);
  padding: 14px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

.welcome-image-badge .badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}

.welcome-image-badge .badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.welcome-content .section-header {
  text-align: left;
  margin: 0 0 28px;
}

.welcome-content .section-title-line {
  margin-left: 0;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.welcome-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--blue-xlight);
  border-radius: var(--r-md);
  border-left: 3px solid var(--yellow);
}

.welcome-feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.welcome-feature h5 {
  font-size: 0.88rem;
  margin-bottom: 2px;
  color: var(--gray-800);
}

.welcome-feature p {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0;
}

/* ----------------------------------------------------------------
   9. CARDS — ROOM CARDS
---------------------------------------------------------------- */
.cards-grid {
  display: grid;
  gap: 28px;
}

.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.room-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t-base);
  border: 1px solid var(--gray-100);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

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

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}

.room-card-body {
  padding: 24px;
}

.room-card-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.room-card-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.65;
}

.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

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

/* ----------------------------------------------------------------
   10. STATS BAR
---------------------------------------------------------------- */
.stats-bar {
  background: var(--blue);
  padding: 50px 0;
}

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

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.18);
  align-self: stretch;
  margin: 0 auto;
  display: none;
}

/* ----------------------------------------------------------------
   11. DINING TEASER
---------------------------------------------------------------- */
.dining-teaser {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.dining-teaser-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Restaurant.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.dining-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(1,25,106,0.92) 0%,
    rgba(3,54,181,0.75) 55%,
    rgba(3,54,181,0.30) 100%
  );
}

.dining-teaser-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.cuisine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.cuisine-tag {
  background: rgba(254,186,2,0.18);
  color: var(--yellow);
  border: 1px solid rgba(254,186,2,0.35);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.83rem;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   12. EVENTS TEASER
---------------------------------------------------------------- */
.events-grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.event-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t-base);
  border: 1px solid var(--gray-100);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.event-card-image {
  height: 220px;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.event-card:hover .event-card-image img {
  transform: scale(1.06);
}

.event-card-body {
  padding: 28px;
}

.event-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-light);
  padding: 4px 12px;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 12px;
}

.event-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.event-card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.event-meta-item .icon {
  font-size: 1rem;
}

/* ----------------------------------------------------------------
   13. ATTRACTIONS PREVIEW
---------------------------------------------------------------- */
.attractions-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.attraction-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.attraction-card-img {
  height: 175px;
  overflow: hidden;
  position: relative;
}

.attraction-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.attraction-card:hover .attraction-card-img img {
  transform: scale(1.07);
}

.attraction-card-info {
  padding: 13px 16px 16px;
}

.attraction-card-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.attraction-card-info p {
  font-size: 0.80rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

/* ----------------------------------------------------------------
   14. TESTIMONIALS
---------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: var(--t-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.testimonial-quote {
  font-size: 5rem;
  line-height: 0.6;
  color: var(--yellow);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 12px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-800);
  display: block;
}

.author-role {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ----------------------------------------------------------------
   14.5 CAROUSEL DOTS (mobile pagination indicators)
---------------------------------------------------------------- */
.carousel-dots {
  display: none; /* hidden on desktop */
}

/* ----------------------------------------------------------------
   15. CTA BANNER
---------------------------------------------------------------- */
.cta-banner {
  background: var(--blue);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: rgba(254,186,2,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   16. ROOMS PAGE — DETAILED
---------------------------------------------------------------- */
.room-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-100);
}

.room-detail:last-child { border-bottom: none; }

.room-detail:nth-child(even) .room-detail-grid {
  direction: rtl;
}

.room-detail:nth-child(even) .room-detail-grid > * {
  direction: ltr;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.room-slider {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.room-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-slide {
  flex: 0 0 100%;
  height: 100%;
}

.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  color: var(--blue);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
  z-index: 5;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.slider-btn:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev { left: 14px; }
.slider-btn-next { right: 14px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--t-fast);
  border: none;
}

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

.room-detail-content .section-header {
  text-align: left;
  margin: 0 0 24px;
}

.room-detail-content .section-title-line {
  margin-left: 0;
}

.room-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.room-amenity-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-xlight);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  color: var(--blue);
}

.room-detail-ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   17. DINING PAGE
---------------------------------------------------------------- */
.cuisine-section {
  padding: var(--section-y) 0;
}

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

.cuisine-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--t-base);
}

.cuisine-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.cuisine-card-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.cuisine-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--blue);
}

.cuisine-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

.menu-highlights {
  background: var(--blue-xlight);
  padding: var(--section-y) 0;
}

.menu-category {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}

.menu-category h4 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: background var(--t-fast);
}

.menu-item:hover {
  background: var(--blue-xlight);
}

.menu-item-name { font-weight: 500; }
.menu-item-price {
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  margin-left: 8px;
}

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

.dining-hour-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--yellow);
}

.dining-hour-card h4 {
  color: var(--blue);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.dining-hour-time {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gray-800);
  display: block;
  margin-bottom: 6px;
}

.dining-hour-card p {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin: 0;
}

/* ----------------------------------------------------------------
   18. FACILITIES PAGE
---------------------------------------------------------------- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.facility-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
}

.facility-card:hover::before {
  transform: scaleX(1);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.facility-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-xlight);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--t-base);
}

.facility-card:hover .facility-icon {
  background: var(--blue);
}

.facility-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.facility-card p {
  font-size: 0.86rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------------------------------
   19. EVENTS PAGE
---------------------------------------------------------------- */
.event-space-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 32px;
  border: 1px solid var(--gray-100);
  min-height: calc(100vh - 180px); /* navbar + section header space */
  max-height: 620px;
}

.event-space-card.reverse {
  direction: rtl;
}

.event-space-card.reverse > * {
  direction: ltr;
}

.event-space-image {
  position: relative;
  min-height: 0; /* allow flex/grid to control height */
}

.event-space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.event-space-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.event-space-badge {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border: 1px solid var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.event-space-body h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--blue-navy);
}

.event-stats {
  display: flex;
  gap: 24px;
  margin: 20px 0;
}

.event-stat {
  text-align: center;
  padding: 14px 20px;
  background: var(--blue-xlight);
  border-radius: var(--r-md);
}

.event-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  font-family: var(--font-heading);
}

.event-stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: block;
}

.event-features-list {
  list-style: none;
  margin: 16px 0 24px;
}

.event-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}

.event-features-list li::before {
  content: '✓';
  color: var(--yellow-dark);
  font-weight: 700;
  flex-shrink: 0;
}

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

.event-type-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--t-base);
}

.event-type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.event-type-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
}

.event-type-card h4 {
  font-size: 0.98rem;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.event-type-card p {
  font-size: 0.80rem;
  color: var(--gray-500);
  margin: 0;
}

/* ----------------------------------------------------------------
   20. GALLERY PAGE
---------------------------------------------------------------- */
.gallery-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 24px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  border-radius: var(--r-full);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t-base);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  transition: var(--t-base);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,54,181,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t-base);
}

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

.gallery-overlay-icon {
  color: var(--white);
  font-size: 2rem;
  transform: scale(0.7);
  transition: transform var(--t-spring);
}

.gallery-item:hover .gallery-overlay-icon {
  transform: scale(1);
}

.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 20px 80px rgba(0,0,0,0.80);
  transform: scale(0.92);
  transition: transform var(--t-spring);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-fast);
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--yellow);
  color: var(--black);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-fast);
  z-index: 10;
}

.lightbox-nav:hover {
  background: var(--yellow);
  color: var(--black);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.86rem;
  text-align: center;
  white-space: nowrap;
}

/* ----------------------------------------------------------------
   21. ATTRACTIONS PAGE
---------------------------------------------------------------- */
.attraction-full-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--t-base);
  display: flex;
  flex-direction: column;
}

.attraction-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.attraction-full-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--blue-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.attraction-full-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
  display: block;
}

.attraction-full-card:hover .attraction-full-card-img img {
  transform: scale(1.07);
}

.attraction-full-card-body {
  padding: 24px;
  flex: 1;
}

.attraction-distance {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-xlight);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
}

.attraction-full-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.attraction-full-card p {
  font-size: 0.86rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------------------------------
   22. ABOUT PAGE
---------------------------------------------------------------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--yellow);
  transition: var(--t-base);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mv-card h3 {
  color: var(--blue);
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.mv-card p {
  color: var(--gray-600);
  font-size: 0.94rem;
  line-height: 1.8;
  margin: 0;
}

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

.value-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--t-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.value-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}

.value-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.value-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   23. CONTACT PAGE
---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--blue);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: calc(var(--navbar-h) + 24px);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.contact-info-card .subtitle {
  color: rgba(255,255,255,0.70);
  font-size: 0.90rem;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-detail-text a,
.contact-detail-text span {
  color: rgba(255,255,255,0.90);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-detail-text a:hover { color: var(--yellow); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--t-base);
  background: rgba(255,255,255,0.10);
  color: var(--white);
}

.social-btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--blue-navy);
}

.contact-form-wrap .subtitle {
  color: var(--gray-500);
  font-size: 0.90rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(3,54,181,0.10);
}

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

.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--r-sm);
  margin-top: 16px;
  font-size: 0.90rem;
  font-weight: 500;
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 80px;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ----------------------------------------------------------------
   24. FOOTER
---------------------------------------------------------------- */
.footer {
  background: var(--blue-navy);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--t-base);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--yellow);
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-contact-icon {
  color: var(--yellow);
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 2px;
  width: 18px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.62);
  transition: color var(--t-fast);
}

.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  background: rgba(0,0,0,0.28);
  padding: 18px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
}

.footer-bottom-links a:hover { color: var(--yellow); }

/* ----------------------------------------------------------------
   25. WHATSAPP FLOATING BUTTON
---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--t-spring);
  text-decoration: none;
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.60);
}

.whatsapp-btn svg {
  fill: white;
  width: 30px;
  height: 30px;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2.5s infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.whatsapp-tooltip {
  background: var(--gray-800);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--t-base);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ----------------------------------------------------------------
   26. BACK TO TOP
---------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--t-base);
  border: none;
  box-shadow: var(--shadow-blue);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

/* ----------------------------------------------------------------
   27. SCROLL ANIMATIONS
---------------------------------------------------------------- */
[data-aos] {
  opacity: 0;
  transition: opacity var(--t-slow), transform var(--t-slow);
}

[data-aos="fade-up"] {
  transform: translateY(36px);
}

[data-aos="fade-left"] {
  transform: translateX(36px);
}

[data-aos="fade-right"] {
  transform: translateX(-36px);
}

[data-aos="zoom-in"] {
  transform: scale(0.92);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos-delay="100"] { transition-delay: 0.10s; }
[data-aos-delay="150"] { transition-delay: 0.15s; }
[data-aos-delay="200"] { transition-delay: 0.20s; }
[data-aos-delay="250"] { transition-delay: 0.25s; }
[data-aos-delay="300"] { transition-delay: 0.30s; }
[data-aos-delay="400"] { transition-delay: 0.40s; }
[data-aos-delay="500"] { transition-delay: 0.50s; }

/* ----------------------------------------------------------------
   28. PAGE CONTENT OFFSET (for fixed nav)
---------------------------------------------------------------- */
main:not(.has-hero) {
  padding-top: var(--navbar-h);
}

/* ----------------------------------------------------------------
   29. RESPONSIVE — TABLET (max 1024px)
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-y: 72px;
  }

  .nav-links a { padding: 8px 9px; font-size: 0.82rem; }

  .welcome-grid,
  .about-story-grid  { gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .attractions-home-grid { grid-template-columns: repeat(2, 1fr); }

  .event-space-card { grid-template-columns: 1fr; }
  .event-space-card.reverse { direction: ltr; }
  .event-space-image { min-height: 260px; }
  .event-space-body { padding: 36px 32px; }

  .stats-grid { gap: 24px; }

  .event-types-grid { grid-template-columns: repeat(2, 1fr); }

  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

/* ----------------------------------------------------------------
   30. RESPONSIVE — MOBILE (max 768px)
---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-y: 56px;
    --navbar-h: 70px;
  }

  /* Mobile Nav */
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: var(--blue-dark);
    flex-direction: column;
    padding: 20px 16px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }

  .nav-menu.open { display: flex; }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .nav-links a {
    padding: 13px 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
  }

  .nav-cta {
    margin: 16px 0 0;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero-home .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-page { height: 48vh; }
  .rooms-hero,
  .gallery-hero,
  .attractions-hero { height: 56vh; min-height: 300px; }

  /* Grids */
  .welcome-grid,
  .room-detail-grid,
  .about-story-grid  { grid-template-columns: 1fr; gap: 32px; }

  .room-detail:nth-child(even) .room-detail-grid { direction: ltr; }

  .welcome-image img { height: 300px; }

  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .cuisine-cards { grid-template-columns: 1fr; }
  .dining-hours-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }

  .facilities-grid { grid-template-columns: 1fr; }

  .events-grid-home { grid-template-columns: 1fr; }
  .event-types-grid { grid-template-columns: repeat(2, 1fr); }

  /* ---- Mobile horizontal scroll carousels ---- */
  #roomsTrack,
  #eventsTrack,
  #attractionsTrack {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  #roomsTrack::-webkit-scrollbar,
  #eventsTrack::-webkit-scrollbar,
  #attractionsTrack::-webkit-scrollbar { display: none; }

  #roomsTrack .room-card,
  #roomsTrack article.room-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  #eventsTrack .event-card,
  #eventsTrack article.event-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  #attractionsTrack .attraction-card {
    flex: 0 0 72vw;
    max-width: 260px;
    scroll-snap-align: start;
  }

  /* ---- Mobile reviews carousel ---- */
  #reviewsTrack {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  #reviewsTrack::-webkit-scrollbar { display: none; }
  #reviewsTrack .testimonial-card {
    flex: 0 0 88vw;
    max-width: 360px;
    scroll-snap-align: center;
    margin: 0;
  }

  .gallery-grid { columns: 2; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 32px 24px; }
  .contact-info-card { padding: 32px 28px; }

  .room-amenities-grid { grid-template-columns: 1fr; }

  .welcome-features { grid-template-columns: 1fr; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .mission-vision-grid { grid-template-columns: 1fr; }

  .about-image img { height: 320px; }

  .cta-btns { flex-direction: column; align-items: center; }

  /* Hero bg position on mobile — shows hotel building facade */
  .hero-home .hero-bg {
    background-position: 65% center;
  }

  /* Amenities strip on mobile — wrap to avoid horizontal scroll */
  .amenities-strip-inner {
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
  }

  /* Carousel dots on mobile */
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 4px 0;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
  }

  .carousel-dot.active {
    background: var(--blue);
    transform: scale(1.3);
  }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .event-types-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .hero-home .hero-content { padding: 0 16px; }

  .btn-lg { padding: 14px 28px; font-size: 0.92rem; }
}
