/* =========================================
   THE PREMIUM STAY — Main Stylesheet
   ========================================= */

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

:root {
  --navy:    #0d1b2a;
  --navy2:   #1a2d42;
  --gold:    #c9a84c;
  --gold2:   #e8c76a;
  --white:   #ffffff;
  --offwhite:#f8f6f2;
  --light:   #f2ede8;
  --text:    #2c2c2c;
  --muted:   #6b7280;
  --border:  #e5e0d8;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
  --shadow-md: 0 8px 40px rgba(0,0,0,.14);
  --transition: .3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.1rem; }
p  { color: var(--muted); }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Sections --- */
.section { padding: 96px 0; }
.bg-light { background: var(--light); }
.bg-dark-section { background: var(--navy); }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { color: var(--navy); margin-bottom: 12px; }
.section-head p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.section-head.reveal h2.light { color: var(--white); }
.section-head .light { color: var(--offwhite); }
h2.light { color: var(--white) !important; }

/* --- Label --- */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.label.light { color: var(--gold2); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: var(--white); }
.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
}
.btn-nav:hover { background: var(--gold2); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); }
.btn-airbnb {
  background: transparent;
  color: #ff5a5f;
  border: 1.5px solid #ff5a5f;
  border-radius: 8px;
  font-size: .88rem;
  padding: 9px 18px;
}
.btn-airbnb:hover { background: #ff5a5f; color: var(--white); transform: translateY(-2px); }
.btn-outline-dark {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: var(--navy);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}
.logo-icon { color: var(--gold); font-size: 1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-link:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center center / cover no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.55) 0%, rgba(13,27,42,.3) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  animation: heroFade .9s ease both;
}
@keyframes heroFade { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  font-style: italic;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.70);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-quick-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 14px 32px;
  display: inline-flex;
}
.quick-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 0 20px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
}
.quick-price strong { color: var(--gold); font-size: 1.3rem; font-family: var(--font-heading); }
.quick-price-divider { width: 1px; height: 28px; background: rgba(255,255,255,.2); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text h2 { color: var(--navy); margin: 12px 0 20px; }
.about-text p  { margin-bottom: 16px; }
.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat strong { display: block; font-size: 2rem; font-family: var(--font-heading); color: var(--gold); line-height: 1; }
.stat span   { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.about-image-wrap { position: relative; }
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light);
  position: relative;
}
.about-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8e0d5, #d5ccc0);
  color: var(--muted);
  font-size: 2.5rem;
}
.img-placeholder span { font-size: .9rem; font-family: var(--font-body); }
.img-placeholder.dark { background: linear-gradient(135deg, #1a2d42, #0d1b2a); color: rgba(255,255,255,.4); }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-badge i { color: var(--gold); font-size: 1.5rem; }
.about-badge strong { display: block; font-size: .95rem; color: var(--navy); }
.about-badge span   { font-size: .8rem; color: var(--muted); }

/* =========================================
   ROOMS
   ========================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
}
.room-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; z-index: 1; }
.room-card:hover .room-img img { transform: scale(1.05); }

/* Bundle split images */
.bundle-img { display: flex; gap: 3px; }
.bundle-img img { position: relative; inset: auto; width: 50%; height: 100%; flex-shrink: 0; }
.bundle-img-left { border-radius: 0; }
.bundle-img-right { border-radius: 0; }
.bundle-img-3 .bundle-img-left { width: 55%; }
.bundle-img-right-col { width: 45%; display: flex; flex-direction: column; gap: 3px; }
.bundle-img-right-col img { position: relative; inset: auto; width: 100%; height: 50%; }
.room-card:hover .bundle-img img { transform: scale(1.03); }
.room-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}
.room-body { padding: 28px; }
.room-body h3 { color: var(--navy); margin-bottom: 10px; }
.room-body p  { font-size: .93rem; margin-bottom: 18px; }
.room-features { margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.room-features li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); }
.room-features i  { color: var(--gold); font-size: .8rem; }
.room-footer { display: flex; align-items: center; justify-content: space-between; }
.room-price .amount { font-size: 1.9rem; font-family: var(--font-heading); color: var(--navy); font-weight: 700; }
.room-price .unit   { font-size: .85rem; color: var(--muted); }
.airbnb-strip { margin-top: 16px; }
.airbnb-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,90,95,.05);
  border: 1.5px solid rgba(255,90,95,.18);
  border-radius: var(--radius);
  padding: 20px 28px;
  flex-wrap: wrap;
}
.airbnb-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.airbnb-banner-left > i {
  font-size: 2rem;
  color: #ff5a5f;
  flex-shrink: 0;
}
.airbnb-banner-left strong { display: block; color: var(--navy); font-size: .95rem; margin-bottom: 2px; }
.airbnb-banner-left span   { font-size: .82rem; color: var(--muted); }
.airbnb-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* =========================================
   BOOK DIRECT STRIP
   ========================================= */
.book-direct-strip {
  background: var(--navy);
  padding: 80px 0;
}
.bds-inner { text-align: center; }
.bds-heading { margin-bottom: 48px; }
.bds-heading h2 { color: var(--white); margin: 8px 0 14px; }
.bds-heading p { color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; }
.bds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.bds-item {
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: border-color .3s, background .3s;
}
.bds-item:hover { border-color: var(--gold); background: rgba(201,168,76,.06); }
.bds-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
}
.bds-item h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.bds-item p { color: rgba(255,255,255,.6); font-size: .88rem; }

/* =========================================
   FAQ
   ========================================= */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q i { color: var(--gold); font-size: .85rem; flex-shrink: 0; transition: transform .3s; }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 22px; }
.faq-a.open { display: block; }
.faq-a p { color: var(--muted); font-size: .95rem; line-height: 1.75; }
.faq-a strong { color: var(--text); font-weight: 600; }

/* =========================================
   AMENITIES
   ========================================= */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.amenity { text-align: center; }
.amenity-icon {
  width: 64px; height: 64px;
  background: var(--light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: background .3s, transform .3s;
}
.amenity:hover .amenity-icon { background: var(--navy); transform: translateY(-4px); }
.amenity h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.amenity p  { font-size: .88rem; }

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gal-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy2);
  cursor: pointer;
}
.gal-wide { grid-column: span 2; aspect-ratio: 16/9; }
.gal-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; z-index: 1; }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s;
  z-index: 2;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: var(--white); font-weight: 600; font-size: .9rem; }

/* =========================================
   LOCATION
   ========================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.location-info h3 { color: var(--navy); margin-bottom: 24px; font-size: 1.4rem; }
.location-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.location-list li { display: flex; align-items: flex-start; gap: 16px; }
.loc-icon {
  width: 40px; height: 40px;
  background: var(--light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.location-list strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: 2px; }
.location-list span   { font-size: .85rem; color: var(--muted); }
.location-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.location-map iframe { width: 100%; height: 400px; border: none; display: block; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.stars { color: var(--gold); margin-bottom: 18px; font-size: 1rem; display: flex; gap: 2px; }
.testimonial p { font-size: .95rem; color: var(--text); font-style: italic; margin-bottom: 24px; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .95rem; color: var(--navy); }
.reviewer span   { font-size: .8rem; color: var(--muted); }

/* =========================================
   BOOKING FORM
   ========================================= */
.booking-wrap { max-width: 820px; margin: 0 auto; }
.booking-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group input.invalid,
.form-group select.invalid { border-color: #e53e3e; }
.field-err { font-size: .8rem; color: #e53e3e; min-height: 18px; }
.form-group textarea { resize: vertical; min-height: 110px; }
.price-summary {
  background: var(--light);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
}
.price-summary h4 { color: var(--navy); margin-bottom: 12px; }
.summary-row { display: flex; justify-content: space-between; font-size: .92rem; margin-bottom: 6px; color: var(--muted); }
.summary-row.total { border-top: 1px solid var(--border); padding-top: 10px; margin-top: 8px; color: var(--navy); font-size: 1rem; }
.summary-row.discount { color: #2a9d3a; font-weight: 600; }
.summary-note { font-size: .78rem; color: var(--muted); margin-top: 8px; }
.btn-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* Payment options */
.pay-options { margin-bottom: 24px; }
.pay-options h4 { color: var(--navy); margin-bottom: 14px; font-size: 1rem; }
.pay-opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.pay-opt:has(input:checked) { border-color: var(--gold); background: rgba(201,168,76,.06); }
.pay-opt input[type="radio"] { margin-top: 4px; accent-color: var(--gold); flex-shrink: 0; }
.pay-opt-body { flex: 1; }
.pay-opt-top { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.pay-opt-top strong { color: var(--navy); font-size: .95rem; }
.pay-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 2px 8px;
  border-radius: 50px;
}
.pay-opt-body p { font-size: .85rem; color: var(--muted); margin: 0; }
.pay-opt-body strong { color: var(--text); }

/* Success details */
.success-details {
  background: var(--light);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  text-align: left;
}
.success-row {
  display: flex;
  justify-content: space-between;
  font-size: .92rem;
  padding: 6px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.success-row:last-child { border-bottom: none; }
.success-row strong { color: var(--navy); }
.deposit-note {
  font-size: .88rem;
  color: var(--gold2);
  background: rgba(201,168,76,.15);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.booking-success {
  background: var(--white);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.success-icon { font-size: 4rem; color: #22c55e; margin-bottom: 20px; }
.booking-success h3 { color: var(--navy); font-size: 2rem; margin-bottom: 12px; }
.booking-success p { font-size: 1rem; margin-bottom: 12px; }
.booking-success a { color: var(--gold); font-weight: 600; }
.booking-success button { margin-top: 24px; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand h3 i { color: var(--gold); font-size: 1rem; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list i { color: var(--gold); margin-top: 3px; font-size: .9rem; width: 14px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.admin-link { color: rgba(255,255,255,.25); font-size: .8rem; }
.admin-link:hover { color: rgba(255,255,255,.5); }

/* =========================================
   MODAL
   ========================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(10px); } }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light);
  color: var(--navy);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.modal-close:hover { background: var(--border); }
.modal-header { margin-bottom: 24px; }
.modal-header h3 { color: var(--navy); margin-bottom: 4px; }
.modal-price { color: var(--gold); font-size: 1.3rem; font-family: var(--font-heading); font-weight: 700; }
.modal-body p { margin-bottom: 20px; }
.modal-btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bds-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Navbar */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: var(--navy);
    z-index: 999;
    font-size: 1.1rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; }

  /* Hero */
  .hero-quick-prices { flex-wrap: wrap; padding: 12px 20px; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 0; bottom: -16px; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-wide { grid-column: span 2; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; }
  .location-map iframe { height: 280px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Booking form */
  .booking-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-quick-prices { display: none; }
  .airbnb-links { flex-direction: column; align-items: center; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .stats-row { gap: 20px; }
  .location-cta { flex-direction: column; }
  .bds-grid { grid-template-columns: 1fr; }
  .faq-q { font-size: .95rem; }
  .airbnb-banner { flex-direction: column; align-items: flex-start; }
  .airbnb-links { width: 100%; justify-content: flex-start; }
}

/* =========================================
   FLATPICKR THEME OVERRIDES
   ========================================= */
.flatpickr-calendar { font-family: var(--font-body); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: var(--gold); border-color: var(--gold); }
.flatpickr-day.inRange { background: rgba(201,168,76,.15); border-color: rgba(201,168,76,.15); }
.flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--gold); border-color: var(--gold); }
.flatpickr-day:hover { background: rgba(201,168,76,.2); }
.flatpickr-months .flatpickr-month { background: var(--navy); color: var(--white); border-radius: var(--radius) var(--radius) 0 0; }
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month { color: var(--white); fill: var(--white); }
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg { fill: var(--gold); }
.flatpickr-current-month .flatpickr-monthDropdown-months { background: var(--navy); color: var(--white); }
.flatpickr-weekday { color: var(--navy); font-weight: 600; }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover { background: #fee; color: #ccc; text-decoration: line-through; border-color: transparent; cursor: not-allowed; }
#checkIn, #checkOut { cursor: pointer; }
