/* ============================================
   HOTEL KARYSMÃ — Design System & Landing Page
   ============================================ */

/* --- Google Fonts --- */
@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');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --primary: #0a1628;
  --primary-light: #1a2d4a;
  --primary-medium: #132240;
  --accent: #c9a84c;
  --accent-light: #e8d5a0;
  --accent-dark: #a8893d;
  --surface: #f8f6f0;
  --surface-warm: #f5f0e8;
  --surface-dark: #1e1e2e;
  --text: #2c2c2c;
  --text-light: #6b7280;
  --text-on-dark: #e8e8e8;
  --text-on-dark-muted: #9ca3af;
  --white: #ffffff;
  --black: #000000;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* Glassmorphism */
  --glass-bg: rgba(10, 22, 40, 0.75);
  --glass-border: rgba(201, 168, 76, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --glass-blur: blur(20px);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

::selection {
  background-color: var(--accent);
  color: var(--primary);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--dark {
  background-color: var(--primary);
  color: var(--text-on-dark);
}

.section--alt {
  background-color: var(--surface-warm);
}

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

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

/* --- Typography --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.7;
}

.section--dark .section-subtitle {
  color: var(--text-on-dark-muted);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.navbar.scrolled {
  top: var(--space-sm);
  left: var(--space-md);
  right: var(--space-md);
  width: auto;
  max-width: var(--container-wide);
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-full);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar__logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: -1px;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar__logo-tagline {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.3px;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.navbar__link:hover {
  color: var(--accent);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--navbar-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero__bg img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.5) 0%,
    rgba(10, 22, 40, 0.3) 40%,
    rgba(10, 22, 40, 0.7) 80%,
    rgba(10, 22, 40, 0.95) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-lg);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.hero__badge i {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero__title span {
  color: var(--accent);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-3xl);
  line-height: 1.7;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: var(--space-4xl);
  padding-top: var(--space-2xl);
}

.hero__stat {
  text-align: center;
  padding: 0 var(--space-2xl);
  position: relative;
}

/* Golden divider between stats */
.hero__stat + .hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-value small {
  font-size: 0.7em;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.btn i {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

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

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

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

.btn--dark:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn--sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.85rem;
}

.btn--lg {
  padding: var(--space-lg) var(--space-3xl);
  font-size: 1.1rem;
}

/* ============================================
   BOOKING BAR
   ============================================ */
.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding: 0 var(--space-lg);
}

.booking-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.92), rgba(15, 30, 52, 0.96));
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-lg) 0;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 168, 76, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

@media (min-width: 992px) {
  .booking-bar__inner {
    padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  }
}

/* Subtle golden top accent line */
.booking-bar__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 0 0 2px 2px;
}

/* Subtle corner glow (isolated) */
.booking-bar__inner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.04) 0%, transparent 40%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.booking-bar__field {
  flex: 1 1 180px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 0 var(--space-lg);
  position: relative;
}

/* Vertical divider between fields */
.booking-bar__field + .booking-bar__field::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.booking-bar__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-bar__label i {
  width: 13px;
  height: 13px;
  opacity: 0.7;
}

.booking-bar__input {
  width: 100%;
  min-height: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px var(--space-lg);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition-base);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  letter-spacing: 0.3px;
}

/* Custom dropdown arrow for selects */
select.booking-bar__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Custom calendar icon for date inputs */
input[type="date"].booking-bar__input::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(10deg);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

input[type="date"].booking-bar__input:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.booking-bar__input:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.booking-bar__input:focus {
  border-color: var(--accent);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1), inset 0 0 20px rgba(201, 168, 76, 0.03);
  outline: none;
}

.booking-bar__input::placeholder {
  color: var(--text-on-dark-muted);
  font-weight: 400;
}

.booking-bar__input option {
  background: var(--primary);
  color: var(--white);
  padding: 10px;
}

.booking-bar__btn {
  flex-shrink: 0;
  padding-left: var(--space-lg);
}

.booking-bar__btn .btn {
  padding: 14px var(--space-2xl);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  position: relative;
  overflow: hidden;
}

.booking-bar__btn .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.booking-bar__btn .btn:hover {
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about .section-label {
  justify-content: flex-start;
}

.about .section-title {
  text-align: left;
}

.about__text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.about__feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.about__feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about__feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.about__feature-icon i {
  width: 22px;
  height: 22px;
}

.about__feature-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.room-card__image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.room-card__badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: var(--accent);
  color: var(--primary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.room-card__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.room-card__desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.room-card__amenity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.room-card__amenity i {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--surface);
  margin-top: auto;
}

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

.room-card__price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.room-card__price-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.room-card__action .btn {
  padding: var(--space-sm) var(--space-xl);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: var(--space-md);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev {
  left: var(--space-xl);
}

.lightbox__nav--next {
  right: var(--space-xl);
}

.lightbox__counter {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials__slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  padding: var(--space-3xl);
  text-align: center;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-xl);
}

.testimonial-card__star {
  color: var(--accent);
  width: 22px;
  height: 22px;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  position: relative;
}

.testimonial-card__text::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-card__location {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonials__dot.active {
  background: var(--accent);
  width: 30px;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.location__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.location__card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.location__card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.location__card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.location__card-icon i {
  width: 22px;
  height: 22px;
}

.location__card-content h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.location__card-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.location__card-content a {
  color: var(--accent-dark);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.location__card-content a:hover {
  color: var(--accent);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}

.faq__question i {
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq__item.active .faq__question i {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq__answer-content {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   RESERVATION MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  padding: var(--space-lg);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal__header {
  padding: var(--space-xl) var(--space-2xl);
  border-bottom: 1px solid var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.modal__close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.modal__close:hover {
  background: var(--surface);
  color: var(--primary);
}

.modal__close i {
  width: 20px;
  height: 20px;
}

.modal__body {
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--surface);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  transition: all var(--transition-fast);
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

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

.reservation-summary {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.reservation-summary__title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reservation-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
}

.reservation-summary__row span:first-child {
  color: var(--text-light);
}

.reservation-summary__row span:last-child {
  font-weight: 600;
  color: var(--primary);
}

.reservation-summary__total {
  border-top: 2px solid var(--accent);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
}

.reservation-summary__total span:last-child {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-dark);
  white-space: nowrap;
}

.modal__footer {
  padding: 0 var(--space-2xl) var(--space-2xl);
  display: flex;
  gap: var(--space-md);
}

.modal__footer .btn {
  flex: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__brand-logo .navbar__logo-icon {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.footer__brand-desc {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__brand-social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer__social-link i {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xl);
  font-size: 1rem;
  position: relative;
  padding-bottom: var(--space-md);
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__link {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__link i,
.footer__link svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  transition: transform var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer__contact-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer__contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.footer__contact-icon i,
.footer__contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer__contact-info p {
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer__contact-info a {
  color: var(--accent-light);
  transition: color var(--transition-fast);
}

.footer__contact-info a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  width: 28px;
  height: 28px;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--text);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

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

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: var(--space-2xl);
  right: calc(var(--space-2xl) + 70px);
  z-index: 998;
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.scroll-top:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.scroll-top i {
  width: 20px;
  height: 20px;
}

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

/* Tablet */
@media (max-width: 1024px) {


  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 180px);
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }

  .navbar.scrolled {
    top: 0;
    left: 0;
    right: 0;
    max-width: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: calc(var(--navbar-height) + var(--space-2xl)) var(--space-2xl) var(--space-2xl);
    transition: transform var(--transition-base), visibility var(--transition-base);
    gap: var(--space-lg);
    box-shadow: none;
    visibility: hidden;
  }

  .navbar__nav.active {
    transform: translateX(0);
    visibility: visible;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__link {
    font-size: 1.1rem;
  }

  .navbar__cta {
    width: 100%;
    text-align: center;
    padding: var(--space-md) var(--space-xl);
  }

  .hero__stats {
    gap: var(--space-xl);
  }

  .hero__stat-value {
    font-size: 1.5rem;
  }

  .booking-bar__inner {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-xl) var(--space-lg);
    gap: var(--space-lg);
  }

  /* Remove vertical divider on mobile */
  .booking-bar__field + .booking-bar__field::before {
    display: none;
  }

  .booking-bar__field {
    width: 100%;
    padding: 0;
    flex: none;
  }

  .booking-bar__btn {
    width: 100%;
    padding-left: 0;
    margin-top: var(--space-md);
  }

  .booking-bar__btn .btn {
    width: 100%;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__image-accent {
    display: none;
  }

  .about .section-label,
  .about .section-title {
    text-align: center;
    justify-content: center;
  }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }

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

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

  .location__map {
    height: 300px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox__nav--prev {
    left: var(--space-md);
  }

  .lightbox__nav--next {
    right: var(--space-md);
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .hero__content {
    padding-bottom: 60px; /* Space for booking bar */
  }

  .hero__stats {
    flex-direction: column;
    gap: 0;
    margin-top: var(--space-2xl);
  }

  .hero__stat {
    padding: var(--space-md) 0;
  }

  /* Horizontal divider for stacked stats */
  .hero__stat + .hero__stat::before {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    width: 24px;
    height: 24px;
  }

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

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 160px);
  }

  .gallery__item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonial-card {
    padding: var(--space-xl);
  }

  .testimonial-card__text {
    font-size: 1.1rem;
  }

  .modal {
    max-height: 95vh;
  }

  .modal__header,
  .modal__body {
    padding: var(--space-lg);
  }

  .modal__footer {
    padding: 0 var(--space-lg) var(--space-lg);
    flex-direction: column;
  }
}
