/* ===== PANGONG MOONLAND COTTAGE - GLOBAL STYLES ===== */

:root {
  --primary: #1a6b8a;
  --primary-dark: #0d4f6b;
  --primary-light: #2a9bc7;
  --accent: #e8a84c;
  --accent-dark: #c98a2a;
  --earth: #8b7355;
  --earth-light: #c4a87a;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --light-gray: #e8e4de;
  --dark: #1a1a2e;
  --text: #2c2c2c;
  --text-light: #666666;
  --success: #27ae60;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: inherit; outline: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.3; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.8; color: var(--text-light); }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 { color: var(--dark); margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--text-light); font-size: 1.05rem; }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26,107,138,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,107,138,0.45);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232,168,76,0.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,168,76,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ===== STICKY BOOK NOW BAR ===== */
.sticky-book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  z-index: 999;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.sticky-book-bar.hidden { transform: translateY(100%); }
.sticky-book-bar p { color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; }
.sticky-book-bar .btn { flex-shrink: 0; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 79, 107, 0.97);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: var(--shadow);
}
.navbar.transparent { background: transparent; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.nav-logo-text span:last-child {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: 8px 14px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.nav-book-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(232,168,76,0.4);
}
.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,168,76,0.5) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 30, 50, 0.75) 0%,
    rgba(13, 79, 107, 0.55) 50%,
    rgba(13, 30, 50, 0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,168,76,0.2);
  border: 1px solid rgba(232,168,76,0.4);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.2s both;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}
.hero h1 span { color: var(--accent); }
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.hero-badges {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 1s ease 0.8s both;
}
.hero-badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.hero-badge .badge-icon { font-size: 1.5rem; }
.hero-badge .badge-text span:first-child {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-badge .badge-text strong { font-size: 0.95rem; }

/* ===== BOOKING WIDGET ===== */
.booking-widget {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: 0;
}
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 36px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.booking-field { flex: 1; min-width: 140px; }
.booking-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.booking-field label i { color: var(--primary); margin-right: 6px; }
.booking-field input, .booking-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
}
.booking-field input:focus, .booking-field select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,138,0.1);
}
.booking-submit { flex-shrink: 0; }
.booking-submit .btn { height: 48px; }

/* ===== HIGHLIGHTS ===== */
.highlights { background: var(--off-white); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.highlight-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.highlight-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.highlight-card:hover .highlight-icon { transform: scale(1.1) rotate(5deg); }
.highlight-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); }
.highlight-card p { font-size: 0.92rem; }

/* ===== ABOUT PREVIEW ===== */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 14px;
}
.mosaic-img {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.mosaic-img:hover { transform: scale(1.02); }
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-img:first-child { grid-row: span 2; }
.about-content .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.about-stat { text-align: center; }
.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.about-stat .label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ROOMS PREVIEW ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img img { transform: scale(1.08); }
.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.room-badge.popular { background: var(--primary); }
.room-info { padding: 24px; }
.room-info h3 { margin-bottom: 8px; font-size: 1.25rem; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.amenity-tag {
  background: var(--off-white);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.room-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}
.room-price .per {
  font-size: 0.8rem;
  color: var(--text-light);
}
.room-price .old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-right: 6px;
}
.urgency-tag {
  background: #fff3e8;
  color: #d97706;
  border: 1px solid #fed7a3;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-info { line-height: 1.3; }
.author-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.author-location { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

/* ===== GALLERY ===== */
.gallery-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.gallery-tab {
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid var(--light-gray);
  background: transparent;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,79,107,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { background: rgba(13,79,107,0.55); }
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.3);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.3);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== TRAVEL GUIDE ===== */
.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.route-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 24px 28px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
}
.route-number {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.route-header h3 { color: var(--white); margin-bottom: 4px; }
.route-header p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.route-body { padding: 28px; }
.route-stops {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.route-stop {
  background: var(--off-white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.route-arrow { color: var(--text-light); font-size: 0.9rem; }
.route-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.route-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  background: var(--off-white);
  padding: 8px 16px;
  border-radius: 10px;
}
.route-meta-item i { color: var(--primary); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.info-card.warning { border-left-color: #f59e0b; }
.info-card.danger { border-left-color: #ef4444; }
.info-card.success { border-left-color: var(--success); }
.info-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.info-card h4 i { color: var(--primary); }
.info-card.warning h4 i { color: #f59e0b; }
.info-card.danger h4 i { color: #ef4444; }
.info-card.success h4 i { color: var(--success); }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.info-list li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.checkpoint-trail {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.checkpoint-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 28px;
  position: relative;
}
.checkpoint-item:last-child { padding-bottom: 0; }
.checkpoint-item::before {
  content: '';
  position: absolute;
  left: 20px; top: 44px;
  width: 2px;
  height: calc(100% - 14px);
  background: var(--light-gray);
}
.checkpoint-item:last-child::before { display: none; }
.checkpoint-dot {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.checkpoint-info h5 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.checkpoint-info p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.carry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.carry-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.carry-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.carry-item i {
  font-size: 1.4rem;
  color: var(--primary);
  width: 36px;
  flex-shrink: 0;
}
.carry-item span { font-size: 0.9rem; font-weight: 500; color: var(--text); }

/* ===== PLACES TO VISIT ===== */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.place-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.place-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.place-img {
  height: 200px;
  overflow: hidden;
}
.place-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.place-card:hover .place-img img { transform: scale(1.08); }
.place-info {
  background: var(--white);
  padding: 20px;
}
.place-info h4 { margin-bottom: 6px; }
.place-info p { font-size: 0.88rem; margin: 0; }
.place-tag {
  display: inline-block;
  background: rgba(26,107,138,0.08);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { color: var(--primary); font-size: 0.9rem; transition: var(--transition); flex-shrink: 0; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item .icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item .details { line-height: 1.3; }
.contact-item .details small { display: block; color: rgba(255,255,255,0.65); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item .details a, .contact-item .details span { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,138,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== MAP ===== */
.map-section { background: var(--off-white); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== WHATSAPP CHAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 997;
}
.whatsapp-btn {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  position: relative;
  color: var(--white);
  border: none;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: ping 2s infinite;
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  bottom: 10px;
  background: var(--white);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  white-space: nowrap;
  box-shadow: var(--shadow);
  font-weight: 600;
  pointer-events: none;
  animation: fadeIn 0.3s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--white);
}
.whatsapp-chat-window {
  position: fixed;
  bottom: 150px;
  right: 24px;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 998;
  overflow: hidden;
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.whatsapp-chat-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}
.chat-header {
  background: linear-gradient(135deg, #128C7E, #25D366);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chat-avatar {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.chat-header-info h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.chat-header-info p { color: rgba(255,255,255,0.8); font-size: 0.75rem; margin: 0; }
.chat-close-btn {
  margin-left: auto;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: 1.1rem;
  background: none;
  border: none;
  padding: 4px;
}
.chat-body { padding: 20px; }
.chat-message {
  background: #f0f9f0;
  border-radius: 12px 12px 12px 4px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.chat-form { display: flex; flex-direction: column; gap: 12px; }
.chat-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
  font-family: inherit;
}
.chat-input:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.1);
}
.chat-submit {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.chat-submit:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,0.4); }

/* ===== SEASON BANNER ===== */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.season-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}
.season-card.best { border-top-color: var(--success); }
.season-card.poor { border-top-color: #ef4444; }
.season-card:hover { transform: translateY(-4px); }
.season-icon { font-size: 2.4rem; margin-bottom: 12px; }
.season-card h4 { margin-bottom: 8px; }
.season-card p { font-size: 0.88rem; margin: 0; }
.season-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.season-badge.best { background: #d1fae5; color: #065f46; }
.season-badge.poor { background: #fee2e2; color: #991b1b; }
.season-badge.avg { background: #fef3c7; color: #92400e; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, var(--dark) 0%, #0d1520 100%);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 0.9rem; line-height: 1.8; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-col h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-links a i { font-size: 0.75rem; color: var(--primary-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.footer-contact-item span { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom a { color: var(--accent); }

/* ===== PAGE HERO ===== */
.page-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,30,50,0.8), rgba(13,79,107,0.65));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero .eyebrow {
  display: inline-block;
  background: rgba(232,168,76,0.2);
  border: 1px solid rgba(232,168,76,0.4);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 0.65rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-12px); } }
@keyframes ping { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.mobile-nav-overlay.active { display: block; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--dark);
  z-index: 1000;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  border: none;
}
.mobile-nav-links li { margin-bottom: 4px; }
.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--transition);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  padding-left: 24px;
}
.mobile-nav-cta { margin-top: 24px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-badges { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .booking-card { flex-direction: column; }
  .booking-field { min-width: 100%; }
  .about-image-mosaic { grid-template-rows: 180px 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .sticky-book-bar p { display: none; }
  .about-stats { gap: 20px; }
  .route-stops { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .booking-card { padding: 20px; }
  .contact-info-card, .contact-form-card { padding: 24px; }
  .whatsapp-chat-window { width: calc(100vw - 32px); right: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
}
