/* ===== NUVIAMIXPLY.COM — PREMIUM NATURE EDITORIAL DESIGN SYSTEM ===== */

/* ---- IMPORTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --bg-primary: #0a0f0d;
  --bg-secondary: #121a16;
  --bg-tertiary: #1a2520;
  --forest-green: #1f7a63;
  --moss-green: #4f8a6b;
  --earth-brown: #7a5c3e;
  --sky-blue: #60a5fa;
  --sunlight: #facc15;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-30: rgba(255,255,255,0.3);
  --white-12: rgba(255,255,255,0.12);
  --white-08: rgba(255,255,255,0.08);
  --white-05: rgba(255,255,255,0.05);
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.12);
  --glass-blur: blur(20px);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Lato', -apple-system, sans-serif;
  --shadow-soft: 0 4px 30px rgba(0,0,0,0.3);
  --shadow-deep: 0 8px 60px rgba(0,0,0,0.5);
  --shadow-green: 0 0 40px rgba(31,122,99,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1320px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white-70);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-green), var(--moss-green), var(--sunlight));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---- CUSTOM CURSOR ---- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--forest-green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
  display: none;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--moss-green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
  mix-blend-mode: difference;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring {
    display: block;
  }
  body {
    cursor: none;
  }
  a, button, .clickable {
    cursor: none;
  }
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white-90);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--white-50);
  line-height: 1.8;
}

/* ---- UTILITY CLASSES ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--forest-green);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--white-50);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- GLASS CARD ---- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.glass-subtle {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(31,122,99,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(31,122,99,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white-90);
  border: 1px solid var(--white-12);
}

.btn-secondary:hover {
  background: var(--white-05);
  border-color: var(--white-30);
  transform: translateY(-2px);
}

.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(31,122,99,0.3); }
  50% { box-shadow: 0 4px 40px rgba(31,122,99,0.6), 0 0 60px rgba(31,122,99,0.2); }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10,15,13,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white-08);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white-90);
  font-weight: 700;
}

.nav-brand-text span {
  color: var(--forest-green);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-50);
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest-green);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white-90);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white-70);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10,15,13,0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid var(--white-08);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 20s linear;
}

.hero:hover .hero-bg img {
  transform: scale(1.15);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10,15,13,0.4) 0%,
    rgba(10,15,13,0.6) 40%,
    rgba(10,15,13,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--forest-green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--forest-green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.hero-title em {
  font-style: italic;
  color: var(--moss-green);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white-50);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-30);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--forest-green), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- PARK CARDS SECTION ---- */
.parks-intro {
  text-align: center;
  margin-bottom: 80px;
}

.park-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.park-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.park-card:nth-child(even) {
  direction: rtl;
}

.park-card:nth-child(even) > * {
  direction: ltr;
}

.park-card:last-child {
  margin-bottom: 0;
}

.park-card-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.park-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.park-card-image:hover img {
  transform: scale(1.08);
}

.park-card-image-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,13,0.4) 100%);
  pointer-events: none;
}

.park-card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,122,99,0.9);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.park-card-content {
  padding: 20px 0;
}

.park-card-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--forest-green);
  font-weight: 500;
  margin-bottom: 12px;
}

.park-card-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--white-90);
}

.park-card-overview {
  font-size: 1.05rem;
  color: var(--white-50);
  margin-bottom: 24px;
  line-height: 1.8;
}

.park-card-highlights {
  margin-bottom: 24px;
}

.park-card-highlights h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.park-card-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.park-card-highlight-item {
  padding: 6px 16px;
  background: var(--white-05);
  border: 1px solid var(--white-08);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--white-50);
}

.park-card-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.park-card-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.park-card-meta-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-05);
  border-radius: 8px;
  font-size: 0.9rem;
}

.park-card-meta-text {
  font-size: 0.85rem;
}

.park-card-meta-text span {
  display: block;
  color: var(--white-30);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.park-card-special {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(31,122,99,0.1), rgba(79,138,107,0.05));
  border: 1px solid rgba(31,122,99,0.2);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.park-card-special p {
  font-size: 0.95rem;
  color: var(--white-70);
  font-style: italic;
  line-height: 1.6;
}

.park-card-special p::before {
  content: '✦ ';
  color: var(--forest-green);
}

@media (max-width: 900px) {
  .park-card {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
  }

  .park-card:nth-child(even) {
    direction: ltr;
  }
}

/* ---- FEATURED STATS ---- */
.stats-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(31,122,99,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white-05);
  border: 1px solid var(--white-08);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31,122,99,0.3);
  box-shadow: var(--shadow-green);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white-90);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--white-30);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-card { padding: 28px 16px; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- ABOUT SECTION / PAGE ---- */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--forest-green);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.about-value-card {
  padding: 32px 24px;
  background: var(--white-05);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-normal);
}

.about-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31,122,99,0.3);
}

.about-value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.about-value-card h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.about-value-card p {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding: 40px 0;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-05);
  border: 1px solid var(--white-08);
  border-radius: 12px;
  font-size: 1.2rem;
}

.contact-detail-text p {
  margin-bottom: 2px;
}

.contact-detail-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--white-30);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form-wrapper {
  padding: 48px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-70);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-12);
  border-radius: var(--radius-sm);
  color: var(--white-90);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest-green);
  background: rgba(31,122,99,0.05);
  box-shadow: 0 0 0 3px rgba(31,122,99,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff50' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--white-70);
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.form-message {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
}

.form-message.success {
  display: block;
  background: rgba(31,122,99,0.15);
  border: 1px solid rgba(31,122,99,0.3);
  color: var(--moss-green);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrapper {
    padding: 32px 24px;
  }
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(10,15,13,0.8), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-overlay h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-item-overlay p {
  font-size: 0.8rem;
  color: var(--white-50);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-08);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--white-12);
}

.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white-70);
  font-size: 0.95rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-08);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--white-12);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--white-08);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--white-30);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--forest-green);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-05);
  border: 1px solid var(--white-08);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--white-08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-30);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--white-30);
}

.footer-bottom-links a:hover {
  color: var(--forest-green);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- PAGE HERO (for sub pages) ---- */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10,15,13,0.5) 0%,
    rgba(10,15,13,0.85) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-hero-content h1 {
  margin-bottom: 16px;
}

.page-hero-content p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ---- PARALLAX HELPER ---- */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31,122,99,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content p {
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- ANIMATION CLASSES ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ---- LEGAL PAGES ---- */
.legal-content {
  padding-top: 140px;
  padding-bottom: 80px;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--white-50);
  font-size: 0.95rem;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--forest-green);
}

/* ---- PRELOADER ---- */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  animation: preloaderPulse 1.5s ease infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.preloader-bar {
  width: 120px;
  height: 3px;
  background: var(--white-08);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--forest-green), var(--moss-green));
  border-radius: 2px;
  animation: preloaderFill 1.5s ease forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ---- NEWSLETTER ---- */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin-top: 24px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-12);
  border-radius: 50px;
  color: var(--white-90);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--forest-green);
}

.newsletter-form button {
  padding: 14px 28px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-green);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(31,122,99,0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 30px rgba(31,122,99,0.6);
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--white-30);
  margin-bottom: 8px;
}

.breadcrumbs a {
  color: var(--forest-green);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: var(--white-30);
}

/* ---- GLOBAL AMBIENT ---- */
.ambient-glow {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow .glow-1 {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31,122,99,0.04) 0%, transparent 70%);
  animation: ambientFloat 20s ease-in-out infinite;
}

.ambient-glow .glow-2 {
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,138,107,0.03) 0%, transparent 70%);
  animation: ambientFloat 25s ease-in-out infinite reverse;
}

@keyframes ambientFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

/* ---- HOME PAGE — FEATURED PARKS ---- */
.featured-parks {
  padding: 100px 0 60px;
}

.featured-parks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.featured-park-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: var(--transition-normal);
}

.featured-park-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.featured-park-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-park-card:hover img {
  transform: scale(1.06);
}

.featured-park-card-content {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(10,15,13,0.9) 0%, rgba(10,15,13,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-park-card-content .location {
  font-size: 0.75rem;
  color: var(--forest-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
}

.featured-park-card-content h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.featured-park-card-content p {
  font-size: 0.85rem;
  color: var(--white-50);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-park-card-link {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
}

@media (max-width: 900px) {
  .featured-parks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-park-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 580px) {
  .featured-parks-grid {
    grid-template-columns: 1fr;
  }
  .featured-park-card:first-child {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }
}

/* ---- TESTIMONIALS ---- */
.testimonial-section { padding: 80px 0; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  padding: 32px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31,122,99,0.3);
}

.testimonial-stars {
  color: var(--sunlight);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--white-70);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author-info h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white-90);
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 0.75rem;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}