/* ===== Vila Reashma — Modern Sleek Theme ===== */
:root {
  color-scheme: light only;
  --bg: #fef9f3;
  --bg-warm: #fff5eb;
  --bg-accent: linear-gradient(135deg, #fff8f0 0%, #fef3e8 50%, #f0f7f4 100%);
  --card: #ffffff;
  --card-warm: linear-gradient(145deg, #ffffff, #fffbf7);
  --text: #2d3436;
  --text-soft: #636e72;
  --muted: #b2bec3;
  --accent: #c9a86c;
  --accent-light: #dfc99a;
  --accent-dark: #a68b4b;
  --secondary: #00b894;
  --secondary-light: #55efc4;
  --tertiary: #0984e3;
  --warm-coral: #d4a574;
  --warm-peach: #f5e6d3;
  --tropical-teal: #81ecec;
  --sand: #d4b896;
  --sand-light: #f0e4d4;
  --sand-dark: #b89b6a;
  --pool-blue: #6bc5d9;
  --pool-blue-dark: #4ab3c9;
  --success: #00b894;
  --max: 1200px;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(180, 140, 100, 0.1);
  --shadow-md: 0 8px 30px rgba(180, 140, 100, 0.12);
  --shadow-lg: 0 20px 60px rgba(180, 140, 100, 0.15);
  --shadow-glow: 0 8px 40px rgba(0, 184, 148, 0.2);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-accent);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.5s var(--transition);
  width: 100%;
  transform: translateY(-100%);
  opacity: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.site-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.glass-header {
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--sand), var(--sand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon {
  width: 24px;
  height: 24px;
  color: var(--sand-dark);
  flex-shrink: 0;
}

.card-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  vertical-align: middle;
  margin-right: 0.4rem;
}

.brand .tag {
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s var(--transition);
}

.main-nav a:hover {
  color: var(--accent);
  background: rgba(225, 112, 85, 0.08);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--transition);
  background: linear-gradient(145deg, #ffffff, #fffbf7);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--sand-dark);
}

.btn.primary {
  background: linear-gradient(135deg, var(--sand), var(--sand-dark));
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(180, 140, 100, 0.35);
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(180, 140, 100, 0.45);
}

.btn.ghost {
  background: transparent;
  border: 2px solid rgba(180, 140, 100, 0.25);
  box-shadow: none;
}

.btn.ghost:hover {
  border-color: var(--sand-dark);
  color: var(--sand-dark);
  background: rgba(180, 140, 100, 0.08);
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn.airbnb {
  background: linear-gradient(135deg, var(--sand), var(--sand-dark));
  color: white;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 6px 30px rgba(180, 140, 100, 0.4);
}

.btn.airbnb i,
.btn.airbnb svg {
  width: 20px;
  height: 20px;
}

.btn.airbnb:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(180, 140, 100, 0.5);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}

.parallax__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
}

.parallax__layer--back {
  filter: brightness(1.05) saturate(1.15);
}

.parallax__layer--mid {
  opacity: 0;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 0 0 8vh;
}

.hero-content {
  max-width: 700px;
  color: white;
}

.hero-content h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-content h2 span {
  background: linear-gradient(135deg, #ffb347, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(255, 179, 71, 0.4));
}

.hero-content > p {
  font-size: 1.2rem;
  color: white;
  margin: 0 0 2rem;
  max-width: 500px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Gallery Showcase */
.hero-showcase {
  display: block;
  margin-top: 2rem;
}

/* New Hero Elements */
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-icon {
  width: 16px;
  height: 16px;
  color: var(--sand-light);
}

.hero-desc {
  font-size: 1.15rem !important;
  color: white !important;
  line-height: 1.7;
  max-width: 480px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.hero-stats .stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats .stat i,
.hero-stats .stat svg {
  width: 14px;
  height: 14px;
  color: var(--sand-light);
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-actions .btn i,
.hero-actions .btn svg {
  width: 20px;
  height: 20px;
}

.btn.hero-ghost {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: none;
}

.btn.hero-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

.scroll-indicator i,
.scroll-indicator svg {
  width: 32px;
  height: 32px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== Booking Card ===== */
.booking-card {
  background: var(--card-warm);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(225, 112, 85, 0.1);
}

.booking-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.booking-card > .muted {
  font-size: 1rem;
  color: var(--text-soft);
  margin: 0 0 1.5rem;
  display: block;
}

.booking-card hr {
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 1.5rem 0;
}

.booking-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text);
}

.booking-card label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.booking-card input,
.booking-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  margin-top: 0.35rem;
  transition: border-color 0.2s var(--transition);
}

.booking-card input:focus,
.booking-card textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ===== Divider ===== */
.divider {
  display: none;
}

/* ===== Section Cards ===== */
.section-card {
  background: var(--card-warm);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(180, 140, 100, 0.1);
  position: relative;
  overflow: hidden;
}

.section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sand), var(--pool-blue));
  opacity: 0.9;
}

.section-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
  background: linear-gradient(135deg, var(--text), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

section.container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid p {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

.bullets li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pool-blue), var(--pool-blue-dark));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.about-image {
  height: 360px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

/* ===== Gallery ===== */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s var(--transition);
}

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

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--transition);
}

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

/* Legacy grid support */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  transition: all 0.4s var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ===== Amenities ===== */
.section-subtitle {
  color: var(--text-soft);
  font-size: 1rem;
  margin: 0 0 1.25rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  background: linear-gradient(145deg, #fffbf7, #fff5eb);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s var(--transition);
  border: 1px solid rgba(180, 140, 100, 0.1);
}

.amenity i,
.amenity svg {
  width: 32px;
  height: 32px;
  color: var(--pool-blue-dark);
  stroke-width: 1.5;
  margin-bottom: 0.25rem;
}

.amenity:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--card-warm);
  border-color: rgba(180, 140, 100, 0.25);
}

.amenity:hover i,
.amenity:hover svg {
  color: var(--pool-blue);
}

.amenity span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.amenity small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: linear-gradient(145deg, #fffbf7, #fff8f3);
  border-radius: var(--radius);
  transition: all 0.3s var(--transition);
  border: 1px solid rgba(225, 112, 85, 0.06);
}

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

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pool-blue), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.review-body .quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 0.75rem;
  font-style: italic;
}

.meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.meta strong {
  color: var(--text);
  font-weight: 600;
}

.rating {
  color: #ffc107;
  letter-spacing: 2px;
}

/* ===== Contact ===== */
.contact form {
  max-width: 600px;
}

.contact label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  margin-top: 0.4rem;
  transition: border-color 0.2s var(--transition);
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ===== Location / Map ===== */
.location .section-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location .section-card h3 i,
.location .section-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--pool-blue-dark);
}

.map-container {
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.location-highlights .highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(145deg, #fffbf7, #fff5eb);
  border-radius: 8px;
  border: 1px solid rgba(180, 140, 100, 0.1);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.location-highlights .highlight i,
.location-highlights .highlight svg {
  width: 18px;
  height: 18px;
  color: var(--pool-blue-dark);
  flex-shrink: 0;
}

/* ===== Footer ===== */
.site-footer {
  padding: 2.5rem 0;
  text-align: center;
  color: var(--text-soft);
  background: linear-gradient(180deg, transparent, rgba(225, 112, 85, 0.03));
  border-top: 1px solid rgba(225, 112, 85, 0.1);
  margin-top: 2rem;
}

.site-footer strong {
  color: var(--accent);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--transition);
  width: 100%;
  height: 100%;
  touch-action: none;
  overscroll-behavior: contain;
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s var(--transition);
  z-index: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s var(--transition);
  z-index: 1;
}

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

.lightbox-caption {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
  z-index: 1;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1002;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--transition), visibility 0.3s var(--transition);
}

.lightbox-close.visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1002;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--transition), visibility 0.3s var(--transition);
}

.lightbox-nav.visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
  left: 1.5rem;
}

.lightbox-nav.next {
  right: 1.5rem;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
  }
  
  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    top: 1rem;
    right: 1rem;
  }
  
  .lightbox-nav.prev {
    left: 0.5rem;
  }
  
  .lightbox-nav.next {
    right: 0.5rem;
  }
}

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

.section-card {
  animation: fadeInUp 0.6s var(--transition) both;
}

/* Scroll-triggered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

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

/* Subtle parallax scrolling for sections */
.parallax-section {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner {
    padding: 0 0 4rem;
  }
  
  .booking-card {
    max-width: 400px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  .main-nav {
    display: none;
  }
  
  .brand .tag {
    display: none;
  }
  
  .hero-inner {
    padding: 0 1.25rem 5vh !important;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
  }
  
  .header-inner {
    padding: 0 1rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-stats {
    justify-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .hero-actions {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  
  .section-card {
    padding: 1.5rem;
  }
  
  .section-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 0.8rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .hero-stats .stat {
    font-size: 0.85rem;
  }
  
  .hero-stats .stat i,
  .hero-stats .stat svg {
    width: 16px;
    height: 16px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  
  .booking-card .btn {
    width: 100%;
    box-sizing: border-box;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-content h2 {
    font-size: 2.25rem;
  }
  
  .hero-content > p {
    font-size: 1.1rem;
  }
  
  .hero-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .hero-gallery img {
    height: 70px;
  }
  
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-item.tall {
    grid-row: span 1;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section-card {
    padding: 1.5rem;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .location-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .booking-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  
  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid img {
    height: 200px;
  }
  
  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}
