/* ============================================
   PMG CAMPING — CORE DESIGN SYSTEM
   Premium Lakeside Campsite & Adventure Brand
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Bebas+Neue&display=swap');

/* ─── CSS Variables ─── */
:root {
  --forest:     #2D5016;
  --forest-mid: #3E6B1F;
  --forest-lt:  #5A8A2E;
  --lake:       #0F3A5C;
  --lake-mid:   #1A5276;
  --lake-lt:    #2E7DAF;
  --fire:       #E8610A;
  --fire-lt:    #F08030;
  --sand:       #C9B88A;
  --sand-lt:    #EDE0C4;
  --cream:      #FAF6EF;
  --white:      #FFFFFF;
  --dark:       #0D1A0A;
  --dark-mid:   #1A2E14;
  --text:       #2A3620;
  --text-muted: #6B7C5A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;

  --shadow-sm:  0 2px 12px rgba(13,26,10,0.10);
  --shadow-md:  0 8px 32px rgba(13,26,10,0.15);
  --shadow-lg:  0 20px 60px rgba(13,26,10,0.22);
  --shadow-fire: 0 8px 32px rgba(232,97,10,0.3);
  --shadow-lake: 0 8px 32px rgba(15,58,92,0.3);

  --glass-bg:   rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --glass-dark:  rgba(13,26,10,0.45);

  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 72px;
  --section-pad: clamp(60px, 8vw, 120px);
}

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

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

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

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

/* ─── Typography Scale ─── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
}
.label-accent {
  font-family: var(--font-accent);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.body-lg { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.7; font-weight: 300; }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }

/* ─── Section Wrapper ─── */
.section { padding: var(--section-pad) 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
}

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-header .label-accent {
  color: var(--fire);
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  font-family: var(--font-display);
  color: var(--dark);
}
.section-header p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
  font-weight: 300;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--fire);
  color: var(--white);
  box-shadow: var(--shadow-fire);
}
.btn-primary:hover {
  background: var(--fire-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,97,10,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-forest {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(45,80,22,0.3);
}
.btn-forest:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(45,80,22,0.4);
}
.btn-lake {
  background: var(--lake);
  color: var(--white);
}
.btn-lake:hover {
  background: var(--lake-mid);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}
.card:hover .card-img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.card-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ─── Glass Card ─── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

/* ─── Tags / Badges ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.tag-easy    { background: #D4EDDA; color: #1A5C2E; }
.tag-moderate{ background: #FFF3CD; color: #7D5A00; }
.tag-hard    { background: #F8D7DA; color: #721C24; }
.tag-fire    { background: rgba(232,97,10,0.12); color: var(--fire); }
.tag-lake    { background: rgba(15,58,92,0.1);   color: var(--lake); }
.tag-forest  { background: rgba(45,80,22,0.1);   color: var(--forest-mid); }

/* ─── Grid Systems ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* ─── Divider ─── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--fire-lt));
  border-radius: 2px;
  margin: 16px auto;
}
.divider-left { margin: 16px 0; }

/* ─── Nature Texture Overlay ─── */
.nature-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='1' cy='1' r='0.5' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ─── Scroll Reveal (JS adds .visible) ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 60px);
  transition: var(--transition);
}
.navbar.transparent {
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13,26,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--forest-mid), var(--fire));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; color: white; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.08em;
}
.logo-tagline {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-book {
  background: var(--fire) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
}
.nav-book:hover {
  background: var(--fire-lt) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 85vw);
  height: 100vh;
  background: var(--dark);
  z-index: 999;
  padding: 90px 32px 40px;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition-fast);
}
.nav-drawer a:hover { color: var(--fire); padding-left: 8px; }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ─── Hero Shared ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,26,10,0.25) 0%,
    rgba(13,26,10,0.5) 40%,
    rgba(13,26,10,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-eyebrow {
  color: var(--fire-lt);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--fire-lt);
  flex-shrink: 0;
}
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── Floating Scroll Indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform: translateX(-50%) translateY(0)} 50%{transform: translateX(-50%) translateY(-6px)} }
@keyframes scrollDot    { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:0.3;transform:translateY(6px)} }

/* ─── Floating WhatsApp Button ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.5);
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; color: white; }
@keyframes waPulse {
  0%,100%{ box-shadow: 0 6px 24px rgba(37,211,102,0.4) }
  50%{ box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.08) }
}

/* ─── Back to Top ─── */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 997;
  width: 44px; height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  color: white;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--forest-mid); transform: translateY(-3px); }
.back-top svg { width: 18px; height: 18px; }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--dark);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 16px; }
.stat-num {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fire);
  line-height: 1;
  letter-spacing: 0.05em;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* ─── Feature Icons ─── */
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(232,97,10,0.12), rgba(232,97,10,0.06));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-icon svg { width: 28px; height: 28px; color: var(--fire); }
.card:hover .feature-icon {
  background: linear-gradient(135deg, var(--fire), var(--fire-lt));
}
.card:hover .feature-icon svg { color: white; }

/* ─── Testimonial ─── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(232,97,10,0.12);
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sand-lt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  overflow: hidden;
}
.author-name { font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.author-loc  { font-size: 0.8rem; color: var(--text-muted); }
.star-row { display: flex; gap: 2px; margin-bottom: 12px; }
.star { color: #F4A61C; font-size: 0.9rem; }

/* ─── Gallery Preview ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,26,10,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  margin-left: auto;
}

/* ─── Map Section ─── */
.map-section { background: var(--dark-mid); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  position: relative;
  background: var(--dark);
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  background: linear-gradient(135deg, var(--dark-mid), var(--lake));
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.map-pin-icon { font-size: 3rem; }

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  margin: 16px 0 24px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--fire);
  color: white;
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
}
.footer-col ul a:hover { color: var(--fire-lt); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: -2px;
}
.footer-contact-icon svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--fire-lt); }

/* ─── Page Header Banner ─── */
.page-header {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,26,10,0.3), rgba(13,26,10,0.8));
}
.page-header-content { position: relative; z-index: 2; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-header p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--fire-lt); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ─── Accordion ─── */
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--fire); }
.accordion-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(232,97,10,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--fire);
}
.accordion-icon svg { width: 14px; height: 14px; }
.accordion-item.open .accordion-icon { transform: rotate(180deg); background: var(--fire); color: white; }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.accordion-body-inner {
  padding-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── Modal ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  z-index: 1;
  transition: var(--transition-fast);
}
.modal-close:hover { background: var(--fire); color: white; }
.modal-close svg { width: 16px; height: 16px; }
.modal-img { width: 100%; height: 280px; object-fit: cover; }
.modal-body { padding: 32px; }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.modal-section-title {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fire);
  margin: 24px 0 10px;
}
.modal-list { display: flex; flex-direction: column; gap: 6px; }
.modal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.modal-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fire);
  flex-shrink: 0;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.lightbox-close:hover { background: var(--fire); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.lightbox-nav:hover { background: var(--fire); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.8);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ─── Countdown Timer ─── */
.countdown {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.countdown-unit {
  text-align: center;
  min-width: 70px;
}
.countdown-num {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--fire);
  letter-spacing: 0.05em;
}
.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ─── Pricing Cards ─── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pricing-card.featured {
  background: var(--dark);
  color: white;
}
.pricing-card.featured .pricing-title { color: white; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
.pricing-badge {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--fire);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg) translateX(0);
}
.pricing-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.price-currency { font-size: 1.2rem; font-weight: 600; color: var(--fire); }
.price-amount {
  font-family: var(--font-accent);
  font-size: 2.8rem;
  color: var(--fire);
  line-height: 1;
  letter-spacing: 0.03em;
}
.price-unit { font-size: 0.85rem; color: var(--text-muted); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.pricing-feature-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(232,97,10,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pricing-feature-icon svg { width: 10px; height: 10px; color: var(--fire); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
.pricing-card.featured .pricing-feature-icon { background: rgba(232,97,10,0.3); }
.pricing-card.featured .price-unit { color: rgba(255,255,255,0.5); }

/* ─── Timeline ─── */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--fire), var(--lake), var(--forest));
  border-radius: 2px;
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -39px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--fire);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--fire);
}
.timeline-season {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--fire);
  margin-bottom: 6px;
}
.timeline-desc { font-size: 0.9rem; color: var(--text-muted); }

/* ─── Carousel ─── */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.carousel-slide { flex: 0 0 100%; }
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: var(--transition-fast);
  color: var(--dark);
}
.carousel-btn:hover { background: var(--fire); color: white; }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: var(--transition-fast);
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--fire);
  width: 24px;
  border-radius: 4px;
}

/* ─── Form Styles ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(232,97,10,0.12);
}
.form-control::placeholder { color: var(--text-muted); font-weight: 300; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

/* ─── Contact Cards ─── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 24px; height: 24px; color: white; }
.contact-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-value { font-weight: 600; color: var(--dark); font-size: 1rem; }
.contact-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-fire   { color: var(--fire); }
.text-forest { color: var(--forest-mid); }
.text-lake   { color: var(--lake-mid); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--dark); }
.bg-dark-mid { background: var(--dark-mid); }

/* ─── Loading States ─── */
.img-lazy {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.img-lazy.loaded { opacity: 1; }
