@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&display=swap');

:root {
  --deep-olive: #1f2933;
  --warm-sand: #e6d3a3;
  --natural-green: #2f855a;
  --light-cream: #fefae0;
  --sky-accent: #38bdf8;
  --gradient: linear-gradient(135deg, #2f855a, #e6d3a3, #38bdf8);
  --shadow-sm: 0 2px 8px rgba(31,41,51,0.08);
  --shadow-md: 0 4px 20px rgba(31,41,51,0.12);
  --shadow-lg: 0 8px 40px rgba(31,41,51,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --sidebar-width: 260px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light-cream);
  color: var(--deep-olive);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* ========================
   SIDEBAR NAVIGATION
======================== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: rgba(31, 41, 51, 0.97);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  transition: var(--transition);
  overflow-y: auto;
}

.sidebar-brand {
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid rgba(230, 211, 163, 0.15);
  margin-bottom: 1rem;
}

.sidebar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--warm-sand);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sidebar-brand .brand-tagline {
  font-size: 0.7rem;
  color: rgba(230, 211, 163, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.25rem;
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
}

.sidebar-nav li {
  margin: 0.15rem 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: rgba(254, 250, 224, 0.65);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--warm-sand);
  background: rgba(47, 133, 90, 0.15);
  border-left-color: var(--natural-green);
}

.sidebar-nav a .nav-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(230, 211, 163, 0.15);
}

.sidebar-footer p {
  font-size: 0.7rem;
  color: rgba(254, 250, 224, 0.35);
  text-align: center;
}

/* ========================
   MOBILE NAVBAR
======================== */
.mobile-navbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(31, 41, 51, 0.97);
  backdrop-filter: blur(20px);
  z-index: 1001;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
}

.mobile-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--warm-sand);
  font-weight: 700;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--warm-sand);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 41, 51, 0.98);
  z-index: 1000;
  padding: 2rem 1.5rem;
}

.mobile-menu-overlay.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-menu-overlay a {
  display: block;
  padding: 1rem 0;
  color: rgba(254, 250, 224, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(230, 211, 163, 0.1);
  transition: var(--transition);
}

.mobile-menu-overlay a:hover,
.mobile-menu-overlay a.active {
  color: var(--warm-sand);
  padding-left: 0.5rem;
}

/* ========================
   MAIN CONTENT AREA
======================== */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.5s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 41, 51, 0.4) 0%,
    rgba(31, 41, 51, 0.2) 40%,
    rgba(31, 41, 51, 0.6) 100%
  );
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(47, 133, 90, 0.25);
  border: 1px solid rgba(47, 133, 90, 0.4);
  border-radius: 50px;
  color: var(--light-cream);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--natural-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(47, 133, 90, 0.3);
}

.btn-primary:hover {
  background: #276749;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(47, 133, 90, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--natural-green);
  border: 2px solid var(--natural-green);
}

.btn-outline:hover {
  background: var(--natural-green);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sand {
  background: var(--warm-sand);
  color: var(--deep-olive);
}

.btn-sand:hover {
  background: #d4c08f;
  transform: translateY(-2px);
}

/* ========================
   SECTIONS
======================== */
.section {
  padding: 5rem 3rem;
}

.section-sm {
  padding: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--natural-green);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--deep-olive);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: rgba(31, 41, 51, 0.65);
  max-width: 600px;
  margin: 0 auto;
}

.section-alt {
  background: rgba(47, 133, 90, 0.04);
}

/* ========================
   PARK CARDS
======================== */
.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.park-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.park-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.park-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.park-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.park-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(31, 41, 51, 0.75);
  backdrop-filter: blur(10px);
  color: var(--warm-sand);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
}

.park-card-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  background: rgba(47, 133, 90, 0.85);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
}

.park-card-body {
  padding: 1.75rem;
}

.park-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--deep-olive);
}

.park-card-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(31, 41, 51, 0.5);
  margin-bottom: 1rem;
}

.park-card-features {
  margin-bottom: 1.25rem;
}

.park-card-features li {
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: rgba(31, 41, 51, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.park-card-features li::before {
  content: '🌿';
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.park-card-best {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(47, 133, 90, 0.08);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--natural-green);
  margin-bottom: 1.25rem;
}

.park-card-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(31, 41, 51, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========================
   GALLERY MASONRY
======================== */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(31, 41, 51, 0.15);
  background: #ffffff;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--deep-olive);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--natural-green);
  color: #ffffff;
  border-color: var(--natural-green);
}

.masonry-grid {
  columns: 3;
  column-gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.masonry-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 41, 51, 0.7) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.masonry-item:hover .overlay {
  opacity: 1;
}

.masonry-item .overlay span {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========================
   LIGHTBOX
======================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  text-align: center;
  background: rgba(31,41,51,0.6);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

/* ========================
   ABOUT PAGE
======================== */
.about-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-olive);
}

.about-text p {
  color: rgba(31, 41, 51, 0.7);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: rgba(31, 41, 51, 0.65);
}

/* ========================
   CONTACT PAGE
======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--deep-olive);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--light-cream);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--warm-sand);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail .icon {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  background: rgba(47, 133, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--warm-sand);
}

.contact-detail p {
  font-size: 0.88rem;
  color: rgba(254, 250, 224, 0.65);
}

.contact-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-card .form-desc {
  font-size: 0.88rem;
  color: rgba(31, 41, 51, 0.6);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--deep-olive);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(31, 41, 51, 0.12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--deep-olive);
  background: var(--light-cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--natural-green);
  box-shadow: 0 0 0 3px rgba(47, 133, 90, 0.1);
}

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

.form-group .error-msg {
  display: none;
  font-size: 0.75rem;
  color: #e53e3e;
  margin-top: 0.35rem;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e53e3e;
}

.form-group.error .error-msg {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ========================
   FAQ PAGE
======================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-olive);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--natural-green);
}

.faq-question .icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(31, 41, 51, 0.7);
  line-height: 1.8;
}

/* ========================
   LEGAL PAGES
======================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(47, 133, 90, 0.15);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 0.92rem;
  color: rgba(31, 41, 51, 0.75);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  list-style: disc;
  font-size: 0.92rem;
  color: rgba(31, 41, 51, 0.75);
  margin-bottom: 0.4rem;
}

/* ========================
   PAGE HERO (INNER PAGES)
======================== */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 41, 51, 0.5) 0%,
    rgba(31, 41, 51, 0.7) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto;
}

/* ========================
   FOOTER
======================== */
.footer {
  background: var(--deep-olive);
  color: rgba(254, 250, 224, 0.6);
  padding: 3rem 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-brand h3 {
  font-size: 1.25rem;
  color: var(--warm-sand);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--warm-sand);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: rgba(254, 250, 224, 0.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--warm-sand);
  padding-left: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(230, 211, 163, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(254, 250, 224, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--warm-sand);
}

/* ========================
   SCROLL REVEAL
======================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================
   ANIMATIONS
======================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Background motion */
.bg-motion {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: -1;
  pointer-events: none;
}

.bg-motion .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  animation: float 8s infinite ease-in-out;
}

.bg-motion .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--natural-green);
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.bg-motion .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--sky-accent);
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.bg-motion .shape-3 {
  width: 250px;
  height: 250px;
  background: var(--warm-sand);
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

/* ========================
   INTRO SECTION
======================== */
.intro-section {
  padding: 5rem 3rem;
  text-align: center;
}

.intro-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--natural-green);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(31, 41, 51, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ========================
   CTA SECTION
======================== */
.cta-section {
  background: var(--deep-olive);
  padding: 4rem 3rem;
  text-align: center;
}

.cta-section h2 {
  color: var(--warm-sand);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(254, 250, 224, 0.6);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

/* ========================
   SUCCESS MESSAGE
======================== */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.active {
  display: block;
  animation: slideUp 0.5s ease;
}

.form-success .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--natural-green);
}

.form-success p {
  color: rgba(31, 41, 51, 0.6);
}

/* ========================
   PARKS PAGE SPECIFIC
======================== */
.park-detail-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.park-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.park-detail-grid.reverse {
  direction: rtl;
}

.park-detail-grid.reverse > * {
  direction: ltr;
}

.park-detail-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.park-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

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

.park-detail-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.park-detail-content .park-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(47, 133, 90, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.park-detail-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.park-detail-content .location {
  font-size: 0.82rem;
  color: rgba(31, 41, 51, 0.5);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.park-detail-content .features {
  margin-bottom: 1.25rem;
}

.park-detail-content .features li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(31, 41, 51, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.park-detail-content .features li .check {
  color: var(--natural-green);
  font-weight: bold;
  flex-shrink: 0;
}

.park-detail-content .best-for {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: rgba(47, 133, 90, 0.08);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--natural-green);
  margin-bottom: 1.5rem;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  
  .mobile-navbar {
    display: flex;
  }
  
  .main-content {
    margin-left: 0;
    padding-top: 64px;
  }
  
  .section {
    padding: 3.5rem 1.5rem;
  }
  
  .section-sm {
    padding: 2rem 1.5rem;
  }
  
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .parks-grid {
    grid-template-columns: 1fr;
  }
  
  .masonry-grid {
    columns: 2;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .park-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .park-detail-grid.reverse {
    direction: ltr;
  }
  
  .park-detail-image {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-bg {
    background-attachment: scroll;
  }
  
  .page-hero .hero-bg {
    background-attachment: scroll;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .masonry-grid {
    columns: 2;
    column-gap: 0.75rem;
  }
  
  .masonry-item {
    margin-bottom: 0.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .intro-stats {
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .gallery-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    font-size: 0.75rem;
    padding: 0.45rem 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 1rem;
  }
  
  .masonry-grid {
    columns: 1;
  }
  
  .park-card-image {
    height: 200px;
  }
  
  .park-detail-content {
    padding: 1.75rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 1.75rem;
  }
}

/* ========================
   BACK TO TOP
======================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--natural-green);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #276749;
  transform: translateY(-3px);
}

/* ========================
   COOKIE BANNER
======================== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep-olive);
  color: rgba(254, 250, 224, 0.8);
  padding: 1.25rem 2rem;
  z-index: 1500;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.85rem;
  flex: 1;
}

.cookie-inner a {
  color: var(--warm-sand);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-accept {
  padding: 0.6rem 1.5rem;
  background: var(--natural-green);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept:hover {
  background: #276749;
}

.cookie-decline {
  padding: 0.6rem 1.5rem;
  background: transparent;
  color: rgba(254, 250, 224, 0.6);
  border: 1px solid rgba(254, 250, 224, 0.2);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-decline:hover {
  border-color: rgba(254, 250, 224, 0.4);
  color: rgba(254, 250, 224, 0.8);
}