/* ============================================
   Hotel Darsh — Custom Styles
   Modern | Minimal | Sober
   ============================================ */

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

:root {
  --clr-primary: #1a1a2e;
  --clr-secondary: #16213e;
  --clr-accent: #c9a96e;
  --clr-accent-light: #dfc49b;
  --clr-dark: #0f0f1a;
  --clr-light: #faf8f5;
  --clr-white: #ffffff;
  --clr-gray-100: #f5f5f5;
  --clr-gray-200: #e8e8e8;
  --clr-gray-300: #d1d1d1;
  --clr-gray-500: #7a7a7a;
  --clr-gray-700: #4a4a4a;
  --clr-gray-900: #1a1a1a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--clr-gray-900);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-primary);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-light);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-accent);
  border-radius: 4px;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-primary);
  transition: opacity 0.6s ease, visibility 0.6s ease;
  gap: 20px;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-white);
}

.preloader-logo span {
  color: var(--clr-accent);
}

.preloader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--clr-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Section Utilities ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--clr-accent);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--clr-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-gray-500);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.btn-primary:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--clr-white);
  background: rgba(255, 255, 255, 0.08);
}

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

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

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--clr-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-white);
}

.nav-logo-text {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-white);
}

.nav-logo-text span {
  color: var(--clr-accent);
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--clr-accent) !important;
  color: var(--clr-white) !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--clr-accent-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.92) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(15, 15, 26, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--clr-accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--clr-accent);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ---- About Section ---- */
.about-section {
  padding: 120px 0;
  background: var(--clr-white);
}

.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--clr-white);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  background: var(--clr-accent);
  color: var(--clr-white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.about-exp-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about-exp-badge .txt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 2px;
}

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

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--clr-gray-100);
  border-radius: 10px;
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--clr-light);
  box-shadow: var(--shadow-sm);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(201, 169, 110, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1.1rem;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--clr-gray-500);
}

/* ---- Rooms ---- */
.rooms-section {
  padding: 120px 0;
  background: var(--clr-light);
}

.rooms-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.rooms-header .section-subtitle {
  margin: 0 auto;
}

.rooms-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.room-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

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

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

.room-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.room-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

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

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

.room-card-price .price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-accent);
}

.room-card-price .price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--clr-gray-500);
  font-family: var(--font-body);
}

.room-card-price .book-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.room-card-price .book-link:hover {
  color: var(--clr-accent);
  gap: 8px;
}

/* ---- Services ---- */
.services-section {
  padding: 120px 0;
  background: var(--clr-white);
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--clr-gray-200);
  transition: var(--transition);
  text-align: center;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--clr-gray-500);
  line-height: 1.7;
}

/* ---- Food / Dining ---- */
.food-banner {
  padding: 100px 0;
  background: var(--clr-primary);
  position: relative;
  overflow: hidden;
}

.food-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.food-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.food-banner h2 {
  color: var(--clr-white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.food-banner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}

.food-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.food-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.food-img:first-child {
  border-radius: 12px 12px 12px 50px;
}

.food-img:last-child {
  border-radius: 12px 12px 50px 12px;
}

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

/* ---- Gallery ---- */
.gallery-section {
  padding: 120px 0;
  background: var(--clr-light);
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(26, 26, 46, 0.2);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

/* ---- Testimonial ---- */
.testimonial-section {
  padding: 120px 0;
  background: var(--clr-white);
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--clr-gray-700);
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--clr-accent);
  opacity: 0.2;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: var(--clr-accent);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--clr-primary);
  font-size: 0.95rem;
}

.testimonial-location {
  font-size: 0.82rem;
  color: var(--clr-gray-500);
  margin-top: 4px;
}

/* ---- CTA ---- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  text-align: center;
}

.cta-section h2 {
  color: var(--clr-white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 36px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-accent);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
}

.cta-phone:hover {
  color: var(--clr-accent-light);
}

/* ---- Footer ---- */
.footer {
  background: var(--clr-dark);
  padding: 80px 0 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer h4 {
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
}

.footer-contact-item .fc-icon {
  min-width: 18px;
  color: var(--clr-accent);
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.footer-bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a:hover {
  color: var(--clr-accent);
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  padding: 160px 0 80px;
  background: var(--clr-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  color: var(--clr-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb a {
  color: var(--clr-accent);
}

.page-header .breadcrumb span {
  margin: 0 8px;
}

/* ---- Rooms Page Grid ---- */
.rooms-page-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.room-detail-card {
  background: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.room-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.room-detail-img {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

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

.room-detail-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-detail-body .room-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 169, 110, 0.12);
  color: var(--clr-accent);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.room-detail-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.room-detail-body .room-desc {
  font-size: 0.9rem;
  color: var(--clr-gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.room-amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--clr-gray-100);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--clr-gray-700);
}

.room-amenity svg {
  width: 14px;
  height: 14px;
  color: var(--clr-accent);
}

.room-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--clr-gray-200);
}

.room-detail-footer .price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-accent);
}

.room-detail-footer .price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--clr-gray-500);
  font-family: var(--font-body);
}

/* ---- About Page ---- */
.about-mission {
  padding: 120px 0;
  background: var(--clr-white);
}

.about-mission-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission-content .values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-card {
  padding: 24px;
  background: var(--clr-gray-100);
  border-radius: 10px;
  transition: var(--transition);
}

.value-card:hover {
  background: var(--clr-light);
  box-shadow: var(--shadow-sm);
}

.value-card h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.why-choose {
  padding: 120px 0;
  background: var(--clr-light);
}

.why-choose-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  padding: 40px 32px;
  background: var(--clr-white);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.why-card .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* ---- Contact Page ---- */
.contact-section {
  padding: 120px 0;
  background: var(--clr-white);
}

.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--clr-gray-100);
  border-radius: 12px;
  transition: var(--transition);
}

.contact-info-card:hover {
  background: var(--clr-light);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(201, 169, 110, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--clr-gray-500);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--clr-accent);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--clr-accent-light);
}

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 400px;
  }

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

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

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .food-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--clr-primary);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero-stats {
    gap: 24px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .about-images {
    height: 300px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

  .food-images {
    grid-template-columns: 1fr;
  }

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