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

/* Color Variables & Design Tokens */
:root {
  --bg-color: #16110e;        /* Deep, warm clay-black */
  --bg-offset: #1f1814;       /* Lighter warm charcoal for sections */
  --card-bg: #271f1a;         /* Card background */
  --primary: #c9653a;         /* Premium Terracotta orange */
  --primary-hover: #b0532c;
  --accent: #d4a373;          /* Warm bronze/gold */
  --text-light: #f5ebe6;      /* Off-white warm text */
  --text-muted: #a89a92;      /* Muted warm clay grey */
  --border: rgba(212, 163, 115, 0.15);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-color);
  color: var(--text-light);
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

ul {
  list-style: none;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--card-bg);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-align: center;
  display: block;
  margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 40px;
  font-weight: 500;
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(201, 101, 58, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 101, 58, 0.4);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.btn-outline:hover,
.nav-links a.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--bg-color);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(22, 17, 14, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo svg {
  height: 36px;
  width: auto;
  fill: currentColor;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  position: relative;
}

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

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

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

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text-light);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(22, 17, 14, 0.4) 0%, rgba(22, 17, 14, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  text-align: center;
  padding: 0 2rem;
  margin-top: 4rem;
}

.hero-tagline {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease forwards;
  color: var(--text-light);
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.4s ease forwards;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 1.6s ease forwards;
}

/* About Section */
.about {
  padding: 8rem 0;
  background-color: var(--bg-color);
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-tag {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.8rem;
}

.about-lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.about-body {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.vision-mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vm-card {
  background-color: var(--bg-offset);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.vm-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.vm-card h4 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.vm-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: 500px;
}

.about-img-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  height: 100%;
}

.about-img-2 {
  grid-column: 6 / 13;
  grid-row: 4 / 12;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-color);
  z-index: 3;
  height: 100%;
}

/* Room Showcase Section */
.rooms {
  padding: 8rem 0;
  background-color: var(--bg-offset);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.room-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.room-toggle {
  background-color: var(--bg-color);
  border: 1px solid var(--border);
  padding: 0.75rem;
  border-radius: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.toggle-btn {
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 163, 115, 0.1);
  transition: var(--transition-smooth);
  width: 100%;
  text-align: center;
}

.toggle-btn.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(201, 101, 58, 0.3);
}

.toggle-btn:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border-color: rgba(212, 163, 115, 0.3);
}

.room-card-wrapper {
  position: relative;
  min-height: 600px;
}

.room-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.room-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.room-image-slider {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 550px;
  position: relative;
}

.room-image-slider img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.room-details {
  display: flex;
  flex-direction: column;
}

.room-type {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.room-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.room-price-box {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-period {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  font-family: var(--font-sans);
}

.price-value span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.room-desc {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* Facilities Section */
.facilities {
  padding: 8rem 0;
  background-color: var(--bg-color);
}

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

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.facility-card {
  background-color: var(--bg-offset);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

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

.facility-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(212, 163, 115, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition-smooth);
}

.facility-card:hover .facility-icon {
  background-color: var(--primary);
  transform: scale(1.1);
}

.facility-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
  transition: var(--transition-smooth);
}

.facility-card:hover .facility-icon svg {
  fill: #fff;
}

.facility-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.facility-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Media Gallery Section */
.gallery-section {
  padding: 8rem 0;
  background-color: var(--bg-offset);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 260px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(22, 17, 14, 0.8) 0%, rgba(22, 17, 14, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  color: #fff;
}

.gallery-overlay-text h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.gallery-overlay-text span {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-item:hover .gallery-overlay-text {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 8, 7, 0.98);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  padding: 2rem;
}

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

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 2.5rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(22, 17, 14, 0.6);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.lightbox-nav:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact / Map & Footer Section */
.contact {
  padding: 8rem 0 4rem;
  background-color: var(--bg-color);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
  margin-bottom: 6rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card {
  background-color: var(--bg-offset);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 3rem;
  height: 100%;
}

.contact-logo {
  margin-bottom: 2rem;
  color: var(--accent);
}

.contact-logo svg {
  height: 50px;
  width: auto;
  fill: currentColor;
}

.contact-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-motto {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-style: italic;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  background-color: rgba(212, 163, 115, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.info-text h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.info-text p, .info-text a {
  font-size: 1.05rem;
  color: var(--text-light);
}

.info-text a:hover {
  color: var(--primary);
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Premium dark map styling */
}

/* Footer bottom */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background-color: var(--bg-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  border-color: var(--primary);
  color: #fff;
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Floating WhatsApp Button */
.wa-floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background-color: #25d366; /* Official WhatsApp Green */
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

.wa-floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.wa-floating-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Subtle pulse animation for floating button */
.wa-floating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  z-index: -1;
  opacity: 0.4;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness / Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .about-container,
  .room-card,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-images {
    height: 450px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .room-card {
    min-height: auto;
  }
  .room-image-slider {
    height: 450px;
  }
  .map-container {
    height: 400px;
  }
  .lightbox-nav {
    display: none; /* Hide nav arrows on tablet/mobile and rely on swipe/click or let them close */
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 0;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 99;
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .vision-mission-cards {
    grid-template-columns: 1fr;
  }
  .room-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-auto-rows: 180px;
  }
  .contact-card {
    padding: 3rem 2rem;
  }
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
