/* Hope Hill RV Park — Complete Stylesheet */

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2c2c2c;
  background: #fff;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: #2d5016; text-decoration: none; transition: color 0.2s; }
a:hover { color: #e07c3e; }
h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', serif; color: #1a1a1a; line-height: 1.3; }
h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; font-weight: 600; }
p { margin-bottom: 1rem; }
ul { list-style: none; }
blockquote {
  background: #f0ede4;
  padding: 20px 24px;
  border-left: 4px solid #2d5016;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
  font-family: Georgia, serif;
  color: #333;
  font-size: 1.05rem;
}
.text-center { text-align: center; }

/* ===== Layout ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; position: relative; }
.alt-bg { background: #faf8f0; }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 2.5rem; font-size: 1.1rem; }
.section-intro { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; font-size: 1.1rem; color: #555; }
.center-cta { text-align: center; margin-top: 2.5rem; }

/* ===== Diagonal Section Dividers ===== */
.section-divider {
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  z-index: 2;
}
.section-divider-reverse::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: #2d5016;
  color: #fff;
  border-color: #2d5016;
}
.btn-primary:hover {
  background: #1e3a0e;
  border-color: #1e3a0e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45,80,22,0.3);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: #fff;
  color: #2d5016;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #2d5016;
  border-color: #2d5016;
}
.btn-outline:hover {
  background: #2d5016;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo { height: 44px; width: auto; }
.logo-text { font-family: Georgia, 'Times New Roman', serif; font-size: 1.25rem; font-weight: 700; color: #2d5016; letter-spacing: 0.02em; white-space: nowrap; }
@media (max-width: 480px) { .logo-text { font-size: 1rem; } }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  border-radius: 6px;
  transition: all 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  color: #2d5016;
  background: rgba(45,80,22,0.06);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -72px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 800px;
}
.hero-content h1 {
  color: #fff;
  font-size: 4rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.scarcity {
  color: #e07c3e;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.hero .scarcity { color: #ffd700; }

/* ===== Google Badge (Hero) ===== */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  color: #333;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.google-g { flex-shrink: 0; }
.badge-text { display: flex; flex-direction: column; text-align: left; }
.badge-rating { font-size: 1.1rem; font-weight: 700; color: #333; }
.badge-rating .stars { color: #e07c3e; }
.badge-count { font-size: 0.8rem; color: #666; }
.badge-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d5016 !important;
  white-space: nowrap;
}
.badge-link:hover { color: #e07c3e !important; }

/* Google Badge Inline */
.google-badge-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}
.google-badge-inline .stars { color: #e07c3e; }
.google-badge-inline strong { font-size: 1.3rem; }
.review-count { display: block; font-size: 0.85rem; color: #777; }

/* ===== Page Heroes ===== */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: -72px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.page-hero-overlay h1 { color: #fff; font-size: 3rem; margin-bottom: 0.5rem; }
.page-hero-overlay p { color: rgba(255,255,255,0.9); font-size: 1.2rem; }

/* ===== Review Ticker ===== */
.review-ticker {
  background: #1a3a0f;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 60s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  color: #faf8f0;
  padding: 0 3rem;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ticker-item .stars { color: #ffd700; margin-right: 6px; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Intro / Two-Column Grid ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-grid.reverse .intro-text { order: 2; }
.intro-grid.reverse .intro-image { order: 1; }
.intro-image img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s;
}
.intro-image img:hover { transform: scale(1.02); }
.map-embed iframe { border-radius: 12px; }

/* ===== Amenities Grid (Home) ===== */
.amenities-highlights { background: #faf8f0; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  position: relative;
  overflow: hidden;
  background: #1a3a0f;
  background-size: cover;
  background-position: center;
  padding: 0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.amenity-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
  transition: all 0.4s;
}
.amenity-card:hover .amenity-overlay {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
/* Amenity cards now use poster images as backgrounds, video plays on hover */
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

/* Video background for amenity cards */
.amenity-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  border-radius: 12px;
  pointer-events: none;
}
.amenity-video-card:hover .amenity-video {
  opacity: 1;
}
.amenity-video-card:hover .amenity-bg {
  opacity: 0 !important;
}
.amenity-video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
  pointer-events: none;
}
.amenity-video-card:hover::after {
  opacity: 1;
}

.amenity-card .amenity-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}
.amenity-card h3 { margin-bottom: 8px; color: #1a3a0f; font-size: 1.3rem; transition: color 0.4s, text-shadow 0.4s; }
.amenity-card p { color: #333; font-size: 0.95rem; margin: 0; transition: color 0.4s, text-shadow 0.4s; }
.amenity-card:hover h3 { color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.amenity-card:hover p { color: rgba(255,255,255,0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* ===== Amenities Detail Grid ===== */
.amenities-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.amenity-detail-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #faf8f0;
  padding: 28px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.amenity-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.amenity-detail-icon { font-size: 2rem; flex-shrink: 0; }
.amenity-detail-content h3 { margin-bottom: 6px; }
.amenity-detail-content p { color: #555; font-size: 0.95rem; margin: 0; }
.amenity-photo {
  margin-top: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* ===== Reviews Section ===== */
.reviews-section { background: #faf8f0; }
.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(45,80,22,0.08);
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.review-stars { color: #e07c3e; font-size: 1.1rem; margin-bottom: 12px; }
.review-quote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.6;
}
.review-author {
  font-weight: 600;
  color: #2d5016;
  font-size: 0.9rem;
}
.review-date {
  color: #999;
  font-weight: 400;
  font-size: 0.85rem;
  margin-left: 4px;
}

/* ===== Rates Cards ===== */
.rates-preview { background: #fff; }
.rates-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.rate-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e8e5dc;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.rate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.rate-card.featured {
  border-color: #2d5016;
  box-shadow: 0 4px 20px rgba(45,80,22,0.15);
}
.rate-label {
  color: #666;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}
.rate-price {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 4px;
}
.rate-per { color: #666; }
.rate-per a { color: #2d5016; font-weight: 600; }
.rate-desc { color: #666; font-size: 0.9rem; margin-top: 12px; }
.rate-badge {
  display: inline-block;
  background: #e07c3e;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.rates-page-cards .rate-card { background: #faf8f0; }
.rates-page-cards .rate-card.featured { background: #fff; }

/* Included Grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.included-item {
  text-align: center;
  padding: 20px 12px;
  background: #fff;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s;
}
.included-item:hover { transform: translateY(-2px); }

/* ===== Features Grid (About) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2rem;
}
.feature {
  text-align: center;
  padding: 24px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { color: #555; font-size: 0.95rem; }

/* ===== Attractions ===== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.attraction-card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.attraction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
a.attraction-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.attraction-link:hover h3 {
  color: #2d5016;
}
a.attraction-link .attraction-distance {
  transition: background 0.3s;
}
a.attraction-link:hover .attraction-distance {
  background: #e07c3e;
}
.attraction-icon { font-size: 2rem; margin-bottom: 8px; }
.attraction-card h3 { margin-bottom: 6px; }
.attraction-card p { color: #555; font-size: 0.95rem; margin-bottom: 8px; }
.attraction-distance {
  display: inline-block;
  background: #2d5016;
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 40px 16px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

/* ===== Distance List ===== */
.distance-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 1.05rem;
}
.distance-list li:last-child { border-bottom: none; }

/* ===== Weather Widget ===== */
.weather-widget {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #faf8f0;
  padding: 24px 36px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-size: 1rem;
}
.weather-loading { color: #999; }
.weather-temp {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d5016;
}
.weather-desc { color: #555; }
.weather-icon { font-size: 3rem; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 4px; }
.contact-item h3 { margin-bottom: 4px; }
.contact-phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d5016;
}
.contact-form-wrap {
  background: #faf8f0;
  padding: 36px;
  border-radius: 12px;
}
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2d5016;
}
.form-note {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  margin-top: 12px;
}
.map-full iframe { border-radius: 12px; width: 100%; }

/* ===== FAQ Section ===== */
.faq-section { background: #faf8f0; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e0dcd2;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a3a0a;
  cursor: pointer;
  position: relative;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #e07c3e;
  transition: transform 0.3s;
}
.faq-question.open::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer p { color: #555; padding-bottom: 1.25rem; margin: 0; }

/* ===== Final CTA ===== */
.final-cta {
  background: #2d5016;
  color: #fff;
  text-align: center;
}
.final-cta h2 { color: #fff; margin-bottom: 0.75rem; }
.final-cta p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.final-cta .scarcity { color: #ffd700; }
.location-teaser .intro-text .btn-outline { color: #2d5016; border-color: #2d5016; }
.location-teaser .intro-text .btn-outline:hover { background: #2d5016; color: #fff; }

/* ===== Footer ===== */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
.footer-logo { height: 42px; width: auto; margin-bottom: 12px; filter: brightness(1.8); }
.footer-tagline { font-size: 0.95rem; color: #999; margin-bottom: 12px; }
.site-footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-contact a { color: #e07c3e; }
.footer-contact p, .footer-hours p { margin-bottom: 4px; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: #ccc; font-size: 0.9rem; }
.footer-links ul li a:hover { color: #e07c3e; }

/* Footer Google Badge */
.footer-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 12px;
}
.footer-google-badge .stars { color: #e07c3e; font-size: 0.9rem; }
.footer-google-badge span { font-size: 0.85rem; }
.footer-google-badge a { color: #e07c3e; font-size: 0.8rem; }

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #2d5016;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.sticky-cta-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.sticky-stars { color: #ffd700; margin-right: 4px; }
.sticky-btn {
  padding: 10px 24px !important;
  font-size: 0.95rem !important;
  white-space: nowrap;
}
/* Add bottom padding to body when sticky is visible on mobile */
@media (max-width: 768px) {
  body { padding-bottom: 60px; }
}

/* ===== Scroll Fade-In Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .mobile-menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #1a3a0f;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 8px; text-align: center; padding: 0; list-style: none; }
  .main-nav a {
    color: #fff !important;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 14px 32px;
    display: block;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }
  .main-nav a:hover, .main-nav a.active {
    background: rgba(255,255,255,0.12);
    color: #e07c3e !important;
  }
  .mobile-menu-toggle {
    z-index: 1002;
  }
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); background: #fff; }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); background: #fff; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-grid.reverse .intro-text, .intro-grid.reverse .intro-image { order: unset; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .rates-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 2.8rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-detail-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .attractions-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 60px 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: 90vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1.1rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .amenities-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 260px; }
  .page-hero-overlay h1 { font-size: 2.2rem; }
  .section { padding: 48px 0; }
  .google-badge { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 8px 14px; }
  .sticky-cta-inner { flex-direction: column; gap: 4px; padding: 8px 16px; }
  .sticky-cta-text { font-size: 0.8rem; }
  .ticker-item { padding: 0 1.5rem; font-size: 0.85rem; }
  .rate-price { font-size: 2.5rem; }
  .contact-form-wrap { padding: 24px; }
}
