@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=Raleway:wght@300;400;500;600;700&display=swap');

/* ==========================================
   CSS Custom Properties (Design Tokens)
   ========================================== */
:root {
  --background: 40 20% 97%;
  --foreground: 220 25% 12%;
  --card: 40 15% 94%;
  --card-foreground: 220 25% 12%;
  --primary: 38 72% 50%;
  --primary-foreground: 0 0% 100%;
  --secondary: 40 12% 90%;
  --secondary-foreground: 220 25% 12%;
  --muted: 40 10% 92%;
  --muted-foreground: 220 10% 45%;
  --accent: 38 72% 50%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 40 10% 88%;
  --input: 40 10% 88%;
  --ring: 38 72% 50%;
  --radius: 0.5rem;
  --gold: 38 72% 50%;
  --gold-light: 40 75% 62%;
  --gold-dark: 36 60% 38%;
  --maroon: 0 55% 28%;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
}

/* ==========================================
   Reset & Base
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ==========================================
   Scrollbar
   ========================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: hsl(var(--background)); }
::-webkit-scrollbar-thumb { background: hsl(var(--gold) / 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: hsl(var(--gold) / 0.5); }

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

.text-gold-gradient {
  background: linear-gradient(135deg, hsl(var(--gold-light)), hsl(var(--gold)), hsl(var(--gold-dark)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--gold)), transparent);
}

/* ==========================================
   Layout
   ========================================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.min-h-screen { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; padding-top: 5rem; }

/* ==========================================
   Navbar
   ========================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 6rem; }
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; position: relative; z-index: 60; }
.navbar-logo img { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.navbar-logo span {
  font-size: 1.25rem; font-family: var(--font-heading); font-weight: 700;
  letter-spacing: 0.15em; transition: color 0.5s;
}
.navbar-logo span.light { color: #fff; }
.navbar-logo span.dark { color: hsl(var(--foreground)); }

.nav-links { display: none; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a.light { color: rgba(255,255,255,0.8); }
.nav-links a.light:hover { color: #fff; }
.nav-links a.dark { color: hsl(var(--foreground) / 0.6); }
.nav-links a.dark:hover { color: hsl(var(--primary)); }
.nav-links a.active { color: hsl(var(--primary)) !important; }

.nav-phone { display: none; align-items: center; gap: 0.5rem; }
.nav-phone svg { width: 1rem; height: 1rem; transition: color 0.3s; }
.nav-phone a { font-size: 0.875rem; font-weight: 600; transition: color 0.3s; }
.nav-phone.light svg, .nav-phone.light a { color: rgba(255,255,255,0.9); }
.nav-phone.dark svg, .nav-phone.dark a { color: hsl(var(--foreground) / 0.8); }
.nav-phone.dark a:hover { color: hsl(var(--primary)); }

.mobile-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  border: 1px solid; background: transparent; position: relative; z-index: 60;
  transition: all 0.3s;
}
.mobile-toggle.light { color: #fff; border-color: rgba(255,255,255,0.3); }
.mobile-toggle.dark { color: hsl(var(--foreground)); border-color: hsl(var(--border)); }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }

/* Mobile drawer */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 55;
  visibility: hidden; transition: all 0.5s;
}
.mobile-overlay.open { visibility: visible; }
.mobile-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.3);
  opacity: 0; transition: opacity 0.5s;
}
.mobile-overlay.open .mobile-backdrop { opacity: 1; }
.mobile-panel {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 75%; max-width: 380px; background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateX(-100%); transition: transform 0.5s ease-out;
  display: flex; flex-direction: column;
}
.mobile-overlay.open .mobile-panel { transform: translateX(0); }
.mobile-panel-header {
  padding: 2rem 2rem 1.5rem; border-bottom: 1px solid hsl(var(--border) / 0.3);
}
.mobile-panel-header a { display: flex; align-items: center; gap: 0.75rem; }
.mobile-panel-header img { width: 2.75rem; height: 2.75rem; border-radius: 50%; object-fit: cover; }
.mobile-panel-header span { font-size: 1.125rem; font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.15em; color: hsl(var(--foreground)); }
.mobile-nav-links { flex: 1; padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-links a {
  font-size: 1rem; font-weight: 500; padding: 0.75rem 0;
  color: hsl(var(--foreground) / 0.7); transition: color 0.3s;
}
.mobile-nav-links a:hover { color: hsl(var(--foreground)); }
.mobile-nav-links a.active { color: hsl(var(--primary)); }
.mobile-panel-footer { padding: 1.5rem 2rem; border-top: 1px solid hsl(var(--border) / 0.3); }
.mobile-panel-footer a { font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary)); display: flex; align-items: center; gap: 0.5rem; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-phone { display: flex; }
  .mobile-toggle { display: none; }
}

/* ==========================================
   Hero (Home)
   ========================================== */
.hero-section {
  position: relative; height: 103vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; margin-top: -6rem; padding-top: 6rem;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; background: #000;
}
.hero-bg iframe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300vw; height: 300vh; min-width: 100%; min-height: 100%; border: 0;
}
.hero-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}
.hero-content { position: relative; z-index: 10; width: 100%; }
.hero-content-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.hero-subtitle {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.25rem;
}
.hero-subtitle p {
  color: hsl(var(--primary)); font-size: 0.75rem;
  letter-spacing: 0.35em; text-transform: uppercase; font-weight: 600;
}
.hero-subtitle .gold-line { width: 3rem; }
.hero-title {
  font-size: clamp(1.875rem, 5vw, 4.5rem); font-family: var(--font-heading); font-weight: 700;
  color: #fff; line-height: 1.15; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2rem;
}
.hero-desc {
  color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 2.5rem;
  max-width: 36rem; margin-left: auto; margin-right: auto; font-weight: 300; line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }

/* ==========================================
   Page Hero (inner pages)
   ========================================== */
.page-hero {
  position: relative; height: 60vh; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: -6rem;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.4), rgba(0,0,0,0.3));
}
.page-hero-content { position: relative; z-index: 10; text-align: center; padding: 0 1.5rem; max-width: 56rem; margin: 0 auto; }
.page-hero-content .label { color: hsl(var(--primary)); font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.page-hero-content h1 { font-size: clamp(3rem, 5vw, 4.5rem); font-family: var(--font-heading); font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 1.5rem; }
.page-hero-content .gold-line { width: 7rem; margin: 0 auto 1.5rem; }
.page-hero-content .subtitle { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 36rem; margin: 0 auto; font-weight: 300; line-height: 1.7; }

/* ==========================================
   Buttons
   ========================================== */
.btn-pill {
  display: inline-flex; align-items: center; gap: 0; border-radius: 9999px;
  overflow: hidden; border: 1px solid hsl(var(--primary));
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  transition: box-shadow 0.3s;
}
.btn-pill:hover { box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15); }
.btn-pill .btn-label { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.12em; padding: 1rem 2rem; }
.btn-pill .btn-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; background: #fff; color: hsl(var(--foreground));
}
.btn-pill .btn-arrow svg { width: 1.25rem; height: 1.25rem; transform: rotate(-45deg); }

.btn-outline-pill {
  display: inline-flex; align-items: center; gap: 0; border-radius: 9999px;
  overflow: hidden; border: 1px solid rgba(255,255,255,0.3); color: #fff; transition: background 0.3s;
}
.btn-outline-pill:hover { background: rgba(255,255,255,0.1); }
.btn-outline-pill .btn-label { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.12em; padding: 1rem 2rem; }
.btn-outline-pill .btn-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-left: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-pill .btn-icon svg { width: 1.25rem; height: 1.25rem; }

.btn-solid {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.3s;
}
.btn-solid:hover { background: hsl(var(--primary) / 0.9); }

.btn-submit {
  width: 100%; padding: 1rem 2rem; background: hsl(var(--primary));
  color: hsl(var(--primary-foreground)); border: none; font-size: 0.875rem;
  font-weight: 600; letter-spacing: 0.12em; display: flex; align-items: center;
  justify-content: center; gap: 0.5rem; transition: background 0.3s;
}
.btn-submit:hover { background: hsl(var(--primary) / 0.9); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ==========================================
   Section Heading
   ========================================== */
.section-heading { text-align: center; margin-bottom: 4rem; }
.section-heading .label {
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 600; color: hsl(var(--muted-foreground)); margin-bottom: 1rem;
}
.section-heading h2 {
  font-size: clamp(2.5rem, 4vw, 3.75rem); font-family: var(--font-heading);
  font-weight: 700; color: hsl(var(--foreground)); line-height: 1.1; margin-bottom: 1rem;
}
.section-heading .gold-line { width: 6rem; margin: 0 auto 1rem; }
.section-heading .subtitle {
  color: hsl(var(--muted-foreground)); font-size: 1.125rem; max-width: 36rem; margin: 0 auto;
}

/* ==========================================
   Amenity Bar
   ========================================== */
.amenity-bar { border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); padding: 4rem 0; }
.amenity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.amenity-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.amenity-icon {
  width: 5rem; height: 5rem; border-radius: 50%; border: 2px solid hsl(var(--primary) / 0.3);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.amenity-icon:hover { transform: scale(1.1) rotate(5deg); }
.amenity-icon svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--primary)); }
.amenity-label { font-size: 0.75rem; font-weight: 600; color: hsl(var(--foreground) / 0.6); letter-spacing: 0.2em; text-transform: uppercase; }

@media (min-width: 768px) { .amenity-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================
   About Preview (Home)
   ========================================== */
.about-preview { padding: 9rem 0; overflow: hidden; }
.about-grid { display: grid; gap: 4rem; align-items: center; }
.about-text .label { color: hsl(var(--primary)); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.about-text h2 {
  font-size: clamp(3rem, 5vw, 4.5rem); font-family: var(--font-heading);
  font-weight: 700; line-height: 1.08; color: hsl(var(--foreground)); margin-bottom: 2rem;
}
.about-text .gold-line { width: 6rem; margin-bottom: 2rem; }
.about-text p { color: hsl(var(--muted-foreground)); font-size: 1.125rem; line-height: 1.9; margin-bottom: 1.25rem; }
.about-text p:last-of-type { margin-bottom: 3rem; }
.about-image { position: relative; overflow: hidden; }
.about-image img { width: 100%; object-fit: cover; height: 450px; }
.about-deco { position: absolute; width: 8rem; height: 8rem; border: 2px solid hsl(var(--primary) / 0.2); }
.about-deco-bl { bottom: -1.5rem; left: -1.5rem; }
.about-deco-tr { top: -1.5rem; right: -1.5rem; }

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .about-image img { height: 580px; }
}
@media (min-width: 1024px) { .about-image img { height: 650px; } }

/* ==========================================
   Rooms Cards (Home)
   ========================================== */
.rooms-preview { padding: 9rem 0; background: hsl(var(--card)); overflow: hidden; }
.rooms-grid { display: grid; gap: 2rem; }
.room-card {
  position: relative; overflow: hidden; height: 480px; cursor: pointer;
  transition: transform 0.3s;
}
.room-card:hover { transform: translateY(-8px); }
.room-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease-out;
}
.room-card:hover img { transform: scale(1.1); }
.room-card .price-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: 0.5rem 1.25rem; font-size: 1rem; font-weight: 700;
}
.room-card .price-badge small { font-size: 0.75rem; font-weight: 400; opacity: 0.8; }
.room-card .overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
}
.room-card .card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.room-card .card-content h3 { font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.room-card .card-content p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 1.25rem; line-height: 1.7; }
.room-card .card-content a { color: hsl(var(--primary)); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 0.5rem; }
.room-card .card-content a:hover { text-decoration: underline; }
.room-card .card-content a svg { width: 1rem; height: 1rem; }

@media (min-width: 768px) { .rooms-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .room-card { height: 520px; } }

/* ==========================================
   Facilities
   ========================================== */
.facilities { padding: 9rem 0; overflow: hidden; }
.facilities-grid { display: grid; gap: 2rem; }
.facility-card {
  position: relative; overflow: hidden; height: 380px; cursor: pointer;
  transition: transform 0.3s;
}
.facility-card:hover { transform: translateY(-6px); }
.facility-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease-out;
}
.facility-card:hover img { transform: scale(1.1); }
.facility-card .overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
}
.facility-card .card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.facility-card .card-content .icon-title { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.facility-card .card-content .icon-title svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }
.facility-card .card-content .icon-title h3 { font-size: 1.25rem; font-family: var(--font-heading); font-weight: 700; color: #fff; }
.facility-card .card-content p { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.7; }

@media (min-width: 768px) { .facilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
  .facility-card { height: 420px; }
}

/* ==========================================
   Image Grid (Home)
   ========================================== */
.image-grid-section { padding: 9rem 0; overflow: hidden; }
.image-grid { display: grid; gap: 2rem; }
.grid-card { position: relative; overflow: hidden; height: 400px; cursor: pointer; }
.grid-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease-out; }
.grid-card:hover img { transform: scale(1.1); }
.grid-card .grid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent, transparent);
  opacity: 0.8;
}
.grid-card .grid-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; }
.grid-card .grid-text .tag { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.grid-card .grid-text h3 { font-size: 1.875rem; font-family: var(--font-heading); font-weight: 700; color: #fff; }

@media (min-width: 768px) {
  .image-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-card { height: 500px; }
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonials { padding: 8rem 0; background: hsl(var(--card)); }
.testimonials-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; }
.testimonials-header .tag { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }
.testimonials-header h2 { font-size: clamp(2.25rem, 4vw, 3rem); font-family: var(--font-heading); font-weight: 700; color: hsl(var(--foreground)); line-height: 1.1; }
.testimonials-nav { display: none; align-items: center; gap: 0.75rem; }
.testimonials-nav button {
  width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid hsl(var(--border));
  background: transparent; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: hsl(var(--foreground));
}
.testimonials-nav button:hover {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary));
}
.testimonials-nav button svg { width: 1.25rem; height: 1.25rem; }

.testimonials-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 100%; scroll-snap-align: start;
  background: hsl(var(--foreground)); color: hsl(var(--background));
  border-radius: 1rem; padding: 2.5rem; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-stars { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.testimonial-stars .stars { display: flex; gap: 0.125rem; }
.testimonial-stars .stars svg { width: 1.25rem; height: 1.25rem; fill: hsl(var(--primary)); color: hsl(var(--primary)); }
.testimonial-stars .rating { color: hsl(var(--background) / 0.6); font-size: 0.875rem; }
.testimonial-card .quote { color: hsl(var(--background) / 0.9); font-size: 1.125rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid hsl(var(--background) / 0.1); }
.testimonial-author .avatar {
  width: 3rem; height: 3rem; border-radius: 50%; background: hsl(var(--primary) / 0.2);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary)); font-weight: 700; font-size: 1.125rem;
}
.testimonial-author .name { font-weight: 600; color: hsl(var(--background)); }
.testimonial-author .role { font-size: 0.875rem; color: hsl(var(--background) / 0.5); }

.testimonials-nav-mobile { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.testimonials-nav-mobile button {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid hsl(var(--border));
  background: transparent; display: flex; align-items: center; justify-content: center;
  color: hsl(var(--foreground));
}
.testimonials-nav-mobile button svg { width: 1rem; height: 1rem; }

@media (min-width: 768px) {
  .testimonials-nav { display: flex; }
  .testimonials-nav-mobile { display: none; }
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); padding: 3rem; }
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section { padding: 9rem 0; text-align: center; }
.cta-section h2 {
  font-size: clamp(3rem, 5vw, 4.5rem); font-family: var(--font-heading);
  font-weight: 700; color: hsl(var(--foreground)); line-height: 1.08; margin-bottom: 2rem;
}
.cta-section .gold-line { width: 8rem; margin: 0 auto 2rem; }
.cta-section p {
  color: hsl(var(--muted-foreground)); margin-bottom: 3.5rem;
  max-width: 36rem; margin-left: auto; margin-right: auto; line-height: 1.9; font-size: 1.125rem;
}
.cta-section.bg-card { background: hsl(var(--card)); }

/* ==========================================
   Stats
   ========================================== */
.stats-section { padding: 7rem 0; background: hsl(var(--card)); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.stat-item { text-align: center; }
.stat-icon {
  width: 5rem; height: 5rem; border-radius: 50%; border: 2px solid hsl(var(--primary) / 0.3);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  transition: transform 0.3s;
}
.stat-icon:hover { transform: scale(1.1) rotate(5deg); }
.stat-icon svg { width: 2rem; height: 2rem; color: hsl(var(--primary)); }
.stat-value { font-size: 1.875rem; font-family: var(--font-heading); font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================
   Values
   ========================================== */
.values-section { padding: 9rem 0; }
.values-grid { display: grid; gap: 2rem; }
.value-card {
  text-align: center; padding: 2rem; border: 1px solid hsl(var(--border));
  transition: all 0.3s; height: 100%;
}
.value-card:hover { border-color: hsl(var(--primary) / 0.3); transform: translateY(-8px); }
.value-icon {
  width: 4rem; height: 4rem; border-radius: 50%; border: 2px solid hsl(var(--primary) / 0.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.value-icon svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--primary)); }
.value-card h3 { font-size: 1.25rem; font-family: var(--font-heading); font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1rem; }
.value-card p { color: hsl(var(--muted-foreground)); line-height: 1.8; font-size: 0.875rem; }

@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================
   Timeline
   ========================================== */
.timeline-section { padding: 9rem 0; background: hsl(var(--card)); overflow: hidden; }
.timeline { max-width: 56rem; margin: 0 auto; }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 4rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; }
.timeline-dot {
  width: 4rem; height: 4rem; border-radius: 50%; background: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary-foreground)); font-family: var(--font-heading); font-weight: 700;
  font-size: 0.875rem; flex-shrink: 0;
}
.timeline-line { width: 1px; flex: 1; background: hsl(var(--border)); margin-top: 1rem; }
.timeline-content { padding-top: 0.75rem; }
.timeline-content h3 { font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.75rem; }
.timeline-content p { color: hsl(var(--muted-foreground)); line-height: 1.8; }

/* ==========================================
   Gallery
   ========================================== */
.gallery-section { padding: 9rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.gallery-item { overflow: hidden; }
.gallery-item img { width: 100%; height: 16rem; object-fit: cover; transition: transform 1s; }
.gallery-item:hover img { transform: scale(1.1); }

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item img { height: 20rem; }
}

/* ==========================================
   Rooms Page - Room Detail
   ========================================== */
.rooms-detail { padding: 9rem 0; }
.room-detail-list { display: flex; flex-direction: column; gap: 5rem; }
.room-detail {
  display: grid; gap: 2.5rem; align-items: center;
}
.room-detail-img { overflow: hidden; }
.room-detail-img img {
  width: 100%; height: 400px; object-fit: cover; transition: transform 1s;
}
.room-detail-img:hover img { transform: scale(1.05); }
.room-detail-info .meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.room-detail-info .meta span { font-size: 0.75rem; }
.room-detail-info .meta .size { color: hsl(var(--primary)); letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.room-detail-info .meta .dot { color: hsl(var(--muted-foreground)); }
.room-detail-info .meta .guests { color: hsl(var(--muted-foreground)); display: flex; align-items: center; gap: 0.25rem; }
.room-detail-info .meta .guests svg { width: 0.75rem; height: 0.75rem; }
.room-detail-info h3 { font-size: clamp(2rem, 4vw, 3rem); font-family: var(--font-heading); font-weight: 700; color: hsl(var(--foreground)); line-height: 1.1; margin-bottom: 1rem; }
.room-detail-info .gold-line { width: 4rem; margin-bottom: 1.5rem; }
.room-detail-info p { color: hsl(var(--muted-foreground)); font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.5rem; }
.room-amenity-icons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.room-amenity-icons .icon-circle {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid hsl(var(--border));
  display: flex; align-items: center; justify-content: center;
}
.room-amenity-icons .icon-circle svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); }
.room-price-row { display: flex; align-items: center; gap: 1.5rem; }
.room-price { font-size: 1.875rem; font-family: var(--font-heading); font-weight: 700; color: hsl(var(--primary)); }
.room-price small { font-size: 0.875rem; color: hsl(var(--muted-foreground)); font-weight: 400; }

@media (min-width: 768px) {
  .room-detail { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .room-detail-img img { height: 480px; }
  .room-detail.reverse .room-detail-img { order: 2; }
  .room-detail.reverse .room-detail-info { order: 1; }
}

/* ==========================================
   Room Inclusions
   ========================================== */
.inclusions { padding: 9rem 0; background: hsl(var(--card)); }
.inclusions-grid { display: grid; gap: 4rem; align-items: center; }
.inclusions-list { display: grid; gap: 1rem; }
.inclusion-item { display: flex; align-items: center; gap: 0.75rem; }
.inclusion-check {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; background: hsl(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.inclusion-check svg { width: 0.75rem; height: 0.75rem; color: hsl(var(--primary)); }
.inclusion-item span { color: hsl(var(--foreground)); font-weight: 500; }
.inclusions-img { overflow: hidden; }
.inclusions-img img { width: 100%; height: 450px; object-fit: cover; }

@media (min-width: 768px) { .inclusions-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) and (min-width: 1024px) { .inclusions-img img { height: 520px; } }
@media (min-width: 768px) { .inclusions-list { grid-template-columns: 1fr 1fr; } }

/* ==========================================
   Services Grid
   ========================================== */
.services-grid { display: grid; gap: 2rem; }
.service-card {
  position: relative; overflow: hidden; height: 420px; cursor: pointer;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-8px); }
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease-out;
}
.service-card:hover img { transform: scale(1.1); }
.service-card .overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
}
.service-card .card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.service-card .icon-title { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.service-card .icon-title .svc-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid hsl(var(--primary) / 0.4);
  display: flex; align-items: center; justify-content: center;
}
.service-card .icon-title .svc-icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }
.service-card .icon-title h3 { font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700; color: #fff; }
.service-card .card-content p { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.7; }

@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { height: 480px; }
}

/* ==========================================
   Why Choose Us
   ========================================== */
.why-us { padding: 9rem 0; background: hsl(var(--card)); }
.why-us-grid { display: grid; gap: 4rem; align-items: center; }
.why-us-img { overflow: hidden; }
.why-us-img img { width: 100%; height: 500px; object-fit: cover; }
.why-us-content .label { color: hsl(var(--primary)); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
.why-us-content h2 { font-size: clamp(3rem, 5vw, 3.75rem); font-family: var(--font-heading); font-weight: 700; line-height: 1.08; color: hsl(var(--foreground)); margin-bottom: 2rem; }
.why-us-content .gold-line { width: 6rem; margin-bottom: 2.5rem; }
.why-us-list { display: flex; flex-direction: column; gap: 1rem; }
.why-us-item { display: flex; align-items: flex-start; gap: 1rem; }
.why-us-item svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 0.125rem; }
.why-us-item span { font-size: 1.125rem; color: hsl(var(--foreground)); }

@media (min-width: 768px) {
  .why-us-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
  .why-us-img img { height: 580px; }
}

/* ==========================================
   Process Steps
   ========================================== */
.process-section { padding: 9rem 0; }
.process-grid { display: grid; gap: 2rem; }
.process-step { text-align: center; position: relative; }
.process-circle {
  width: 5rem; height: 5rem; border-radius: 50%; background: hsl(var(--primary));
  color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700;
  transition: transform 0.3s;
}
.process-circle:hover { transform: scale(1.1); }
.process-step h3 { font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.75rem; }
.process-step p { color: hsl(var(--muted-foreground)); line-height: 1.8; }

@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================
   Contact Info Cards
   ========================================== */
.contact-info { padding: 5rem 0; background: hsl(var(--card)); }
.contact-info-grid { display: grid; gap: 1.5rem; }
.contact-info-card {
  background: hsl(var(--background)); border: 1px solid hsl(var(--border));
  padding: 2rem; text-align: center; transition: transform 0.3s;
}
.contact-info-card:hover { transform: translateY(-4px); }
.contact-info-card .icon-wrap {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; border: 2px solid hsl(var(--primary) / 0.3);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.contact-info-card .icon-wrap svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); }
.contact-info-card .card-label { font-size: 0.875rem; font-weight: 600; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
.contact-info-card .card-value { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.contact-info-card a { transition: color 0.3s; }
.contact-info-card a:hover { color: hsl(var(--primary)); }

@media (min-width: 640px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-info-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================
   Contact Form
   ========================================== */
.contact-form-section { padding: 9rem 0; }
.contact-form-grid { display: grid; gap: 3.5rem; }
.contact-form-wrap { border: 1px solid hsl(var(--border)); padding: 2.5rem; }
.contact-form-wrap .form-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.contact-form-wrap .form-header svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }
.contact-form-wrap .form-header h3 { font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700; color: hsl(var(--foreground)); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
.form-row { display: grid; gap: 1.25rem; }
.form-input, .form-textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid hsl(var(--border));
  background: hsl(var(--background)); color: hsl(var(--foreground));
  font-family: var(--font-body); font-size: 0.875rem;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: hsl(var(--primary)); }
.form-textarea { resize: vertical; min-height: 120px; }
.map-wrap { overflow: hidden; border: 1px solid hsl(var(--border)); min-height: 500px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 500px; border: 0; }

@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .contact-form-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 3rem; }
}

/* ==========================================
   FAQ
   ========================================== */
.faq-section { padding: 9rem 0; background: hsl(var(--card)); }
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item { border-bottom: 1px solid hsl(var(--border)); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; text-align: left; background: transparent; border: none;
  font-size: 1.125rem; font-family: var(--font-heading); font-weight: 600;
  color: hsl(var(--foreground)); transition: color 0.3s; cursor: pointer;
}
.faq-question:hover { color: hsl(var(--primary)); }
.faq-question svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: hsl(var(--muted-foreground)); transition: all 0.3s; }
.faq-item.open .faq-question svg { color: hsl(var(--primary)); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s; opacity: 0;
}
.faq-item.open .faq-answer { max-height: 300px; opacity: 1; }
.faq-answer p { color: hsl(var(--muted-foreground)); line-height: 1.8; padding-bottom: 1.5rem; }

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  position: relative; overflow: hidden; font-family: var(--font-heading);
  background: hsl(220 30% 6%);
}
.footer-bg-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center;
  line-height: 1; transform: translateY(20%);
  pointer-events: none; user-select: none;
}
.footer-bg-text .line1 {
  font-size: clamp(50px, 8vw, 120px); font-family: var(--font-heading); font-weight: 700;
  color: rgba(255,255,255,0.04); letter-spacing: 0.3em; text-transform: uppercase;
}
.footer-bg-text .line2 {
  font-size: clamp(90px, 14vw, 220px); font-family: var(--font-heading); font-weight: 700;
  color: rgba(255,255,255,0.04); letter-spacing: 0.2em; text-transform: uppercase; margin-top: -0.15em;
}
.footer-inner { position: relative; z-index: 10; padding: 5rem 0 5rem; }
.footer-grid { display: grid; gap: 4rem; }
.footer-left .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.footer-left .footer-logo img { width: 2.75rem; height: 2.75rem; border-radius: 50%; object-fit: cover; }
.footer-left .footer-logo span { font-size: 1.25rem; font-family: var(--font-heading); font-weight: 700; color: #fff; letter-spacing: 0.25em; text-transform: uppercase; }
.footer-left h2 { font-family: var(--font-heading); color: #fff; font-size: clamp(1.875rem, 3vw, 2.625rem); line-height: 1.2; margin-bottom: 2.5rem; max-width: 28rem; }
.footer-right { display: flex; flex-direction: column; gap: 2rem; }
.footer-right a.email, .footer-right a.phone {
  font-size: clamp(1.125rem, 2vw, 1.25rem); font-family: var(--font-heading); color: #fff;
  transition: color 0.3s;
}
.footer-right a.phone { font-weight: 600; }
.footer-right a:hover { color: hsl(var(--primary)); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 600; color: #fff; letter-spacing: 0.1em;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.footer-address { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-address .bar { width: 2px; height: 3rem; background: hsl(var(--primary)); flex-shrink: 0; margin-top: 0.125rem; }
.footer-address p { color: #fff; font-size: 0.875rem; line-height: 1.6; }
.footer-credit { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 1rem; }
.footer-credit a { color: hsl(var(--primary)); transition: color 0.3s; }
.footer-credit a:hover { color: hsl(var(--primary) / 0.8); }

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .footer-inner { padding: 7rem 0; }
  .footer-right { align-items: flex-end; text-align: right; }
  .footer-address { flex-direction: row-reverse; }
  .footer-address p { text-align: right; }
}

/* ==========================================
   Toast Notification
   ========================================== */
.toast-container {
  position: fixed; top: 1.5rem; right: 1.5rem; z-index: 9999;
}
.toast {
  background: hsl(var(--foreground)); color: hsl(var(--background));
  padding: 1rem 1.5rem; border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  margin-bottom: 0.5rem;
  animation: toastIn 0.3s ease-out, toastOut 0.3s ease-in 3.7s forwards;
  max-width: 360px;
}
.toast.error { background: hsl(var(--destructive)); color: hsl(var(--destructive-foreground)); }
.toast strong { display: block; font-weight: 700; margin-bottom: 0.25rem; }
.toast span { font-size: 0.875rem; opacity: 0.8; }
@keyframes toastIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-1rem); } }

/* ==========================================
   Utility
   ========================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
