/* ============================================
   Amanpuri Travellers Lodge - Mobile First CSS
   Warm Desert Palette + Clean Typography
   ============================================ */

/* --- CSS Variables --- */
:root {
  --sand: #f5e6d3;
  --sand-light: #faf3eb;
  --sand-dark: #e8d5bf;
  --terracotta: #c4704b;
  --terracotta-dark: #a85a38;
  --terracotta-light: #d4916f;
  --navy: #1a2332;
  --navy-light: #2a3a4e;
  --charcoal: #333;
  --grey: #666;
  --grey-light: #999;
  --white: #fff;
  --off-white: #fdfbf8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover { color: var(--terracotta-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--grey);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 56px;
  width: auto;
  padding: 2px 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}

.header-cta:hover {
  background: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
  display: block;
}

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

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,35,50,0.95);
  backdrop-filter: blur(10px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  padding: 16px 0;
  display: block;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.nav-overlay.active a {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active a:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active a:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.active a:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.active a:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.active a:nth-child(5) { transition-delay: 0.3s; }
.nav-overlay.active a:nth-child(6) { transition-delay: 0.35s; }

.nav-overlay a:hover {
  color: var(--terracotta-light);
}

/* Desktop nav */
.nav-desktop {
  display: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,35,50,0.45) 0%,
    rgba(26,35,50,0.65) 40%,
    rgba(26,35,50,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
}

.hero p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-width: 200px;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196,112,75,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all var(--transition);
  min-width: 200px;
  justify-content: center;
  backdrop-filter: blur(4px);
}

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

/* --- Trust Strip --- */
.trust-strip {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.trust-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* --- Room Cards --- */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.room-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.room-card-name {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.room-card-desc {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.room-card-amenities {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--grey);
}

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

.room-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
}

.room-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--grey);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-sm:hover {
  background: var(--terracotta-dark);
  color: var(--white);
}

/* --- Why Section --- */
.why-section {
  background: var(--sand-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
}

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

.why-card p {
  color: var(--grey);
  font-size: 0.9rem;
}

/* --- Activities --- */
.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.activity-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.activity-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.activity-card p {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 16px;
  flex: 1;
}

.activity-card .btn-sm {
  align-self: flex-start;
}

/* --- Gallery --- */
.gallery-section {
  background: var(--sand-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

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

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

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

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

.gallery-item:hover::after {
  background: rgba(26,35,50,0.15);
}

/* --- About --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--grey);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.facilities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.facilities-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.facilities-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Contact / Booking --- */
.contact-section {
  background: var(--sand-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--grey);
}

/* Booking Form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
}

.booking-form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.booking-form > p {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--off-white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,112,75,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--terracotta-dark);
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--terracotta);
}

/* --- WhatsApp FAB --- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  color: var(--white);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

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

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

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

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* --- Rate Table --- */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.rate-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rate-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--sand);
  font-size: 0.95rem;
}

.rate-table tr:last-child td {
  border-bottom: none;
}

.rate-table tr:hover td {
  background: var(--sand-light);
}

.rate-highlight {
  color: var(--terracotta);
  font-weight: 700;
}

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 998;
  cursor: pointer;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-2px);
}

/* --- Form Success --- */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--grey);
}

/* --- Loading / Lazy --- */
.lazy {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy.loaded {
  opacity: 1;
}

/* ========================
   RESPONSIVE BREAKPOINTS
   ======================== */

/* Tablet */
@media (min-width: 600px) {
  .hero h1 { font-size: 3rem; }
  .hero-buttons { flex-direction: row; }
  .trust-items { grid-template-columns: repeat(4, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-content { grid-template-columns: 1fr 1fr; align-items: center; }
  .about-img img { height: 400px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .section-title { font-size: 2.2rem; }
}

/* Desktop */
@media (min-width: 960px) {
  .nav-toggle { display: none; }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .nav-desktop a {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
  }

  .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform var(--transition);
  }

  .nav-desktop a:hover::after,
  .nav-desktop a.active::after {
    transform: scaleX(1);
  }

  .hero h1 { font-size: 3.6rem; }
  .hero p { font-size: 1.15rem; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item img { height: 220px; }
  .section { padding: 80px 0; }
  .section-title { font-size: 2.4rem; }
  .map-container iframe { height: 400px; }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .activities-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
}

/* --- Dark Mode --- */
@media (prefers-color-scheme: dark) {
  :root {
    --off-white: #1a1a1a;
    --white: #222;
    --charcoal: #e0e0e0;
    --grey: #aaa;
    --sand: #2a2520;
    --sand-light: #1e1e1e;
    --sand-dark: #333;
    --navy: #0d1420;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  }

  .header {
    background: rgba(34,34,34,0.97);
  }

  .nav-toggle span {
    background: #e0e0e0;
  }

  h1, h2, h3, h4 {
    color: #f0f0f0;
  }

  .nav-desktop a {
    color: #e0e0e0;
  }

  .form-group label {
    color: #e0e0e0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: #2a2a2a;
    border-color: #555;
    color: #f0f0f0;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #888;
  }

  .booking-form > p {
    color: #bbb;
  }

  .contact-card p,
  .contact-card a {
    color: #bbb;
  }

  .rate-table th {
    background: #111;
  }
}

/* --- Print --- */
@media print {
  .header, .whatsapp-fab, .scroll-top, .nav-overlay, .lightbox { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .section { padding: 20px 0; }
}
