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

:root {
  --nps-green: #1a3c1a;
  --nps-green-light: #2d5a27;
  --nps-brown: #3d2b1f;
  --nps-gold: #c4972a;
  --nps-cream: #faf8f0;
  --nps-white: #ffffff;
  --nps-gray: #4a4a4a;
  --nps-gray-light: #e8e5dc;
  --nps-red: #c0392b;
  --nps-orange: #e67e22;
  --nps-blue: #2980b9;
  --nps-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --nps-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--nps-cream);
  color: var(--nps-gray);
  line-height: 1.6;
}

.hidden { display: none !important; }

/* === Header === */
.site-header {
  background: var(--nps-green);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.logo-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav { display: flex; gap: 8px; }

.nav-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* === Home Hero === */
.hero {
  position: relative;
  height: 480px;
  background: var(--nps-green);
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(45,90,39,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,111,20,0.4) 0%, transparent 60%),
    linear-gradient(180deg, var(--nps-green) 0%, var(--nps-brown) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 15 L50 35 L30 35 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 24px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-btn {
  display: inline-block;
  background: var(--nps-gold);
  color: var(--nps-brown);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(196,151,42,0.4);
}

.hero-btn:hover {
  background: #d4a72e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,151,42,0.5);
}

/* === Filter Bar === */
.filter-bar {
  background: var(--nps-white);
  border-bottom: 1px solid var(--nps-gray-light);
  padding: 20px 0;
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filter-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#search {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid var(--nps-gray-light);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--nps-cream);
}

#search:focus { border-color: var(--nps-green-light); }

.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  padding: 6px 16px;
  border: 1.5px solid var(--nps-gray-light);
  border-radius: 50px;
  background: transparent;
  color: var(--nps-gray);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.tag:hover { border-color: var(--nps-green-light); color: var(--nps-green); }
.tag.active { background: var(--nps-green); color: white; border-color: var(--nps-green); }

/* === Parks Grid === */
.parks-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* === Park Card === */
.park-card {
  background: var(--nps-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nps-shadow);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

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

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

.card-image-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 3rem; position: relative;
}

.card-image-inner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.card-designation {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: white; padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.card-state {
  font-size: 0.8rem; color: var(--nps-green-light);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 4px;
}

.card-title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--nps-brown); margin-bottom: 8px; line-height: 1.3;
}

.card-desc {
  font-size: 0.9rem; color: var(--nps-gray);
  line-height: 1.5; flex: 1; margin-bottom: 16px;
}

.card-meta {
  display: flex; gap: 16px;
  padding-top: 16px; border-top: 1px solid var(--nps-gray-light);
}

.card-meta-item { font-size: 0.8rem; }
.card-meta-label { color: #999; font-weight: 500; }
.card-meta-value { color: var(--nps-brown); font-weight: 600; }

/* === Park Detail Hero === */
.park-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.park-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.6) 100%);
}

.park-hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 32px;
  width: 100%;
  color: white;
}

.park-hero-designation {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.park-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.park-hero-tagline {
  font-size: 1.3rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 4px;
}

.park-hero-state {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* === Alerts Bar === */
.alerts-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}

.alert-item.alert-warning {
  background: #fff8e1;
  border-left: 4px solid var(--nps-gold);
  color: #5d4e37;
}

.alert-item.alert-danger {
  background: #fdecea;
  border-left: 4px solid var(--nps-red);
  color: #6b2c24;
}

.alert-item.alert-info {
  background: #e8f4fd;
  border-left: 4px solid var(--nps-blue);
  color: #1a4971;
}

.alert-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-content { flex: 1; }

.alert-title {
  font-weight: 700;
  margin-bottom: 2px;
}

/* === Park Section Navigation === */
.park-nav {
  background: var(--nps-white);
  border-bottom: 2px solid var(--nps-gray-light);
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.park-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.park-nav-inner::-webkit-scrollbar { display: none; }

.park-nav-link {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--nps-gray);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.park-nav-link:hover {
  color: var(--nps-green);
  background: rgba(45,90,39,0.04);
}

.park-nav-link.active {
  color: var(--nps-green);
  border-bottom-color: var(--nps-green);
}

/* === Park Content Sections === */
.park-content { padding-bottom: 60px; }

.park-section {
  padding: 48px 0 0;
  border-bottom: 1px solid var(--nps-gray-light);
}

.park-section:last-child { border-bottom: none; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--nps-brown);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--nps-green);
  display: inline-block;
}

.section-intro {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--nps-gray);
  max-width: 800px;
}

/* === Plan Your Visit Cards === */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 40px;
}

.plan-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  display: block;
}

.plan-card:hover {
  border-color: var(--nps-green-light);
  box-shadow: var(--nps-shadow);
  transform: translateY(-2px);
}

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

.plan-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--nps-brown);
  margin-bottom: 6px;
}

.plan-card p {
  font-size: 0.85rem;
  color: var(--nps-gray);
  line-height: 1.4;
}

/* === Subsections === */
.subsection {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--nps-gray-light);
}

.subsection-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nps-brown);
  margin-bottom: 16px;
}

/* === Accommodation Cards === */
.accommodation-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
}

.accommodation-type {
  font-weight: 700;
  color: var(--nps-green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.accommodation-options {
  font-size: 0.9rem;
  color: var(--nps-gray);
  line-height: 1.5;
}

/* === Visitor Center Cards === */
.vc-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
}

.vc-name {
  font-weight: 700;
  color: var(--nps-brown);
  font-size: 1rem;
  margin-bottom: 4px;
}

.vc-meta {
  font-size: 0.85rem;
  color: var(--nps-green);
  margin-bottom: 6px;
}

.vc-desc {
  font-size: 0.9rem;
  color: var(--nps-gray);
  line-height: 1.5;
}

/* === Regulations === */
.regulations-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 8px;
}

.regulations-list li {
  padding: 10px 14px 10px 36px;
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  position: relative;
  line-height: 1.4;
}

.regulations-list li::before {
  content: '!';
  position: absolute;
  left: 12px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--nps-gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Info Blocks === */
.info-block {
  margin-top: 28px;
}

.info-block-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nps-brown);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--nps-gray-light);
}

.info-block p {
  line-height: 1.7;
  color: var(--nps-gray);
}

.info-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  line-height: 1.5;
}

.info-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

/* === Hours Table === */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--nps-green);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hours-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--nps-gray-light);
  color: var(--nps-gray);
}

.hours-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.02);
}

.info-closed {
  margin-top: 12px;
  padding: 12px 16px;
  background: #fdecea;
  border-left: 4px solid var(--nps-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: #6b2c24;
}

.info-closed strong {
  display: block;
  margin-bottom: 2px;
}

/* === Fees Table === */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.fees-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--nps-green);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fees-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--nps-gray-light);
}

.fees-table td:last-child {
  font-weight: 600;
  color: var(--nps-brown);
}

.fees-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.02);
}

/* === Weather Grid === */
.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.weather-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.weather-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.weather-card.season-summer::before { background: #e67e22; }
.weather-card.season-monsoon::before { background: #2980b9; }
.weather-card.season-winter::before { background: #2ecc71; }

.weather-season {
  font-weight: 700;
  color: var(--nps-brown);
  font-size: 1rem;
  margin-bottom: 2px;
}

.weather-months {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 8px;
}

.weather-temp {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nps-green);
  margin-bottom: 8px;
}

.weather-desc {
  font-size: 0.85rem;
  color: var(--nps-gray);
  line-height: 1.5;
}

/* === Contact Grid === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.contact-item {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius);
  padding: 16px;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nps-brown);
  word-break: break-all;
}

.contact-value a {
  color: var(--nps-green);
  text-decoration: none;
}

.contact-value a:hover { text-decoration: underline; }

/* === Directions Grid === */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.direction-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.direction-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.direction-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--nps-brown);
  margin-bottom: 8px;
}

.direction-card p {
  font-size: 0.9rem;
  color: var(--nps-gray);
  line-height: 1.6;
}

.coordinates {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #999;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

/* === Things to Do / Activities === */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.activity-card {
  background: var(--nps-white);
  border: 1px solid var(--nps-gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: all 0.2s;
}

.activity-card:hover {
  border-color: var(--nps-green-light);
  box-shadow: var(--nps-shadow);
}

.activity-card-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nps-cream);
  border-radius: var(--radius);
}

.activity-card-body { flex: 1; }

.activity-card-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--nps-brown);
  margin-bottom: 4px;
}

.activity-card-desc {
  font-size: 0.88rem;
  color: var(--nps-gray);
  line-height: 1.5;
}

/* === Wildlife Tags === */
.wildlife-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wildlife-tag {
  background: var(--nps-white);
  border: 1.5px solid var(--nps-green-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nps-green);
}

/* === Quick Facts Grid === */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.fact-card {
  background: var(--nps-green);
  color: white;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.fact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  margin-bottom: 4px;
  font-weight: 600;
}

.fact-value {
  font-size: 1.1rem;
  font-weight: 700;
}

/* === No Results === */
.no-results {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.no-results h3 { font-size: 1.3rem; color: var(--nps-brown); margin-bottom: 8px; }
.no-results p { color: #999; }

/* === Footer === */
.site-footer {
  background: var(--nps-brown);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 32px 24px;
}

.footer-inner p { margin-bottom: 4px; }
.footer-note { font-size: 0.8rem; opacity: 0.6; }

/* === Card SVG scenes === */
.card-svg-scene { width: 100%; height: 100%; }

.landscape-jim-corbett { background: linear-gradient(135deg, #2d5016 0%, #4a7c28 50%, #6b9e3a 100%); }
.landscape-ranthambore { background: linear-gradient(135deg, #8B6914 0%, #C4972A 50%, #d4b44a 100%); }
.landscape-kaziranga { background: linear-gradient(135deg, #1a4a3a 0%, #2e7d5e 50%, #40a87a 100%); }
.landscape-sundarbans { background: linear-gradient(135deg, #0d4f4f 0%, #1a8a7a 50%, #28b5a0 100%); }
.landscape-bandipur { background: linear-gradient(135deg, #5C3D1E 0%, #8B6F3A 50%, #a88d55 100%); }

/* === Responsive === */
@media (max-width: 768px) {
  .hero { height: 350px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .parks-grid { grid-template-columns: 1fr; }
  .header-inner {
    height: auto; padding: 12px 16px;
    flex-direction: column; gap: 8px;
  }
  .park-hero { min-height: 280px; }
  .park-hero-content h1 { font-size: 1.8rem; }
  .park-hero-tagline { font-size: 1rem; }
  .park-nav-link { padding: 12px 14px; font-size: 0.82rem; }
  .section-title { font-size: 1.4rem; }
  .plan-cards { grid-template-columns: 1fr 1fr; }
  .info-two-col { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .regulations-list { grid-template-columns: 1fr; }
  .section-inner { padding: 0 16px 36px; }
  .filter-bar { position: relative; top: 0; }
}

@media (max-width: 480px) {
  .plan-cards { grid-template-columns: 1fr; }
  .weather-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
}
