/* ================================================
   Hotel La Punta — Main Stylesheet
   Costa Rica | bilingual EN/ES
   ================================================ */

:root {
  --primary:    #1a5c45;   /* deep jungle green */
  --primary-lt: #2e8b5c;
  --primary-dk: #0f3628;
  --accent:     #d4a017;   /* warm gold */
  --accent-lt:  #f0c040;
  --white:      #ffffff;
  --off-white:  #f8f5f0;
  --gray-100:   #f3f3f0;
  --gray-300:   #c8c8c0;
  --gray-600:   #5a5a50;
  --gray-900:   #1a1a16;
  --danger:     #c0392b;
  --success:    #27ae60;
  --warning:    #e67e22;
  --info:       #2980b9;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,.14);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .3s ease;
}

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

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

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.25;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Language Toggle ─────────────────────────────── */
.lang-bar {
  background: var(--primary-dk);
  padding: 6px 0;
  text-align: right;
}
.lang-bar .container { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.75);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .78rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--gray-900);
  font-weight: 700;
}

/* ── Top Navigation ──────────────────────────────── */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}
.logo-text { line-height: 1.1; }
.logo-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}
.logo-text span:last-child {
  font-size: .72rem;
  color: var(--gray-600);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--gray-100);
  color: var(--primary);
}
.nav-links a.btn-reserve {
  background: var(--accent);
  color: var(--gray-900);
  font-weight: 700;
  padding: 8px 18px;
}
.nav-links a.btn-reserve:hover { background: var(--accent-lt); }

.nav-links a.btn-admin {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 8px 18px;
}
.nav-links a.btn-admin:hover { background: var(--primary-dk); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  color: var(--primary);
  font-size: 1.5rem;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f3628 0%, #1a5c45 50%, #2e8b5c 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80') center/cover no-repeat;
  opacity: .22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,54,40,.92) 0%, rgba(15,54,40,.55) 50%, rgba(15,54,40,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,160,23,.2);
  border: 1px solid var(--accent);
  color: var(--accent-lt);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero h1 span { color: var(--accent-lt); }
.hero-subtitle {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 30px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-lt);
  font-family: 'Playfair Display', serif;
}
.hero-stat span { font-size: .78rem; opacity: .8; text-transform: uppercase; letter-spacing: .5px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--gray-900);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-lt); border-color: var(--accent-lt); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-success { background: var(--success); color: var(--white); border-color: var(--success); }
.btn-success:hover { filter: brightness(1.1); }

.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { filter: brightness(1.1); }

.btn-info { background: var(--info); color: var(--white); border-color: var(--info); }
.btn-secondary { background: var(--gray-300); color: var(--gray-900); border-color: var(--gray-300); }

.btn-sm { padding: 7px 16px; font-size: .82rem; border-radius: 8px; }

/* ── Quick Search Bar ────────────────────────────── */
.quick-search {
  background: var(--white);
  padding: 24px 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
  margin-top: -1px;
}
.quick-search .container {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.qs-group { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 140px; }
.qs-group label { font-size: .78rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .5px; }
.qs-group input, .qs-group select {
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .9rem;
  color: var(--gray-900);
  transition: var(--transition);
  background: var(--white);
}
.qs-group input:focus, .qs-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,92,69,.1);
}
.qs-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  align-self: flex-end;
}
.qs-btn:hover { background: var(--primary-dk); }

/* ── Section styles ──────────────────────────────── */
section { padding: 80px 0; }

.section-tag {
  display: inline-block;
  background: rgba(26,92,69,.1);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--gray-900);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  border-radius: 2px;
  margin: 16px 0;
}
.section-header.center .section-divider { margin: 16px auto; }

/* ── About Section ───────────────────────────────── */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-300);
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(26,92,69,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.feature-text strong { display: block; font-size: .88rem; font-weight: 600; color: var(--gray-900); }
.feature-text span { font-size: .78rem; color: var(--gray-600); }

/* ── Room Cards ──────────────────────────────────── */
.rooms { background: var(--white); }
.room-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-600);
  padding: 7px 18px;
  border-radius: 24px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.room-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.room-card-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-card-img img { transform: scale(1.06); }

.room-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.status-available { background: var(--success); color: var(--white); }
.status-occupied { background: var(--danger); color: var(--white); }
.status-reserved { background: var(--warning); color: var(--white); }
.status-maintenance { background: var(--gray-600); color: var(--white); }

.room-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15,54,40,.85);
  color: var(--accent-lt);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  backdrop-filter: blur(4px);
}

.room-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.room-card-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.room-price { text-align: right; }
.room-price strong { display: block; font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.room-price span { font-size: .72rem; color: var(--gray-600); }
.room-card-desc { font-size: .87rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.amenity-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}
.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-300);
}
.room-capacity { font-size: .82rem; color: var(--gray-600); display: flex; align-items: center; gap: 5px; }

/* ── Amenities Section ───────────────────────────── */
.amenities { background: var(--primary-dk); color: var(--white); }
.amenities .section-title { color: var(--white); }
.amenities .section-sub { color: rgba(255,255,255,.75); }
.amenities .section-tag { background: rgba(212,160,23,.15); color: var(--accent-lt); }
.amenities .section-divider { background: linear-gradient(90deg, var(--accent), var(--accent-lt)); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.amenity-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.amenity-card:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.amenity-card .icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.amenity-card h4 { font-size: 1rem; margin-bottom: 6px; color: var(--white); }
.amenity-card p { font-size: .82rem; color: rgba(255,255,255,.65); }

.coming-soon-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--gray-900);
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Location Section ────────────────────────────── */
.location { background: var(--off-white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  background: var(--gray-300);
  position: relative;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
  color: var(--primary-dk);
}
.map-placeholder i { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder p { font-size: 1rem; font-weight: 600; }
.map-placeholder small { font-size: .82rem; opacity: .75; }

.map-embed { width: 100%; height: 100%; border: none; }

.location-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
}
.info-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(26,92,69,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-card-text h4 { font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.info-card-text p { font-size: .83rem; color: var(--gray-600); line-height: 1.5; }

/* ── Testimonials ────────────────────────────────── */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.testi-stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; }
.testi-text { font-size: .9rem; color: var(--gray-600); font-style: italic; margin-bottom: 16px; line-height: 1.65; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
}
.testi-author-info strong { display: block; font-size: .88rem; }
.testi-author-info span { font-size: .76rem; color: var(--gray-600); }

/* ── Contact / Footer CTA ────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 14px; color: var(--white); }
.cta-section p { opacity: .85; margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text span:first-child { color: var(--accent-lt); }
.footer-brand .logo-text span:last-child { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .85rem; line-height: 1.65; margin-top: 12px; opacity: .7; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent); color: var(--gray-900); }

.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col li { margin-bottom: 9px; }
.footer-col li a { font-size: .83rem; transition: var(--transition); }
.footer-col li a:hover { color: var(--accent-lt); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .83rem;
}
.footer-contact-item i { color: var(--accent); margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Notifications & Loader ──────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 340px;
  animation: slideIn .3s ease;
  border-left: 4px solid var(--info);
}
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast i { font-size: 1.1rem; }
.toast.success i { color: var(--success); }
.toast.error i { color: var(--danger); }
.toast.warning i { color: var(--warning); }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; transform: translateX(30px); }
}

/* ── Modals ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(.95);
  transition: var(--transition);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.modal-header h3 { font-size: 1.25rem; }
.modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--gray-600);
  padding: 4px;
  border-radius: 6px;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gray-100); color: var(--danger); }
.modal-body { padding: 28px; }
.modal-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--gray-300);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ── Forms ───────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: .92rem;
  color: var(--gray-900);
  transition: var(--transition);
  background: var(--white);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,92,69,.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-300);
}

/* ── Reservation Page ────────────────────────────── */
.reservation-page { background: var(--off-white); min-height: 100vh; padding: 60px 0; }
.reservation-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}
.booking-summary {
  background: var(--primary-dk);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.booking-summary h3 { color: var(--accent-lt); margin-bottom: 20px; font-size: 1.1rem; }
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}
.summary-line:last-child { border-bottom: none; }
.summary-line span { opacity: .8; }
.summary-line strong { color: var(--accent-lt); }
.summary-total {
  background: rgba(212,160,23,.15);
  border-radius: 8px;
  padding: 14px;
  margin-top: 16px;
  text-align: center;
}
.summary-total span { font-size: .82rem; opacity: .75; }
.summary-total strong { display: block; font-size: 1.5rem; color: var(--accent-lt); }

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  font-size: .83rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-lt); }

/* ── Utility ─────────────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger); }
.text-warning { color: var(--warning); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; gap: 32px; }
  .about-img   { max-width: 500px; }
  .location-grid { grid-template-columns: 1fr; }
  .reservation-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 68px 0 auto 0; background: var(--white); padding: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-stats { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quick-search .container { flex-direction: column; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero { min-height: 75vh; }
  .modal { border-radius: 12px 12px 0 0; margin-top: auto; }
  .amenities-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
