/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  gap: 6px;
  margin-left: 1.5rem;
  z-index: 1100;
}

/* Enhanced Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-dropdown-toggle:hover {
  background: rgba(67, 121, 184, 0.1);
  color: var(--color-primary);
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 1rem 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.nav-dropdown-content a:hover {
  background: rgba(67, 121, 184, 0.1);
  color: var(--color-primary);
}

.nav-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0.5rem 1rem;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 8px 24px rgba(67,121,184,0.08);
    padding: 0 0 1rem 0;
    display: none;
    z-index: 1000;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    width: 100%;
    padding: 1rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--color-dark);
    font-size: 1.1rem;
    text-align: left;
  }
  .nav-menu a:last-child {
    border-bottom: none;
  }
  
  /* Mobile Navigation Dropdown Adjustments */
  .nav-dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding-left: 2rem;
    display: none;
  }
  
  .nav-dropdown:hover .nav-dropdown-content,
  .nav-dropdown.active .nav-dropdown-content {
    display: block;
  }
  
  .nav-dropdown-content a {
    color: white;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .hamburger {
    display: flex;
  }
  .nav-container {
    position: relative;
  }
}
/* Indoor Dog Parks Specific Styles */
.indoor-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
}

.indoor-hero .hero-text h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.indoor-hero .hero-text h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.indoor-hero .hero-text p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

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

.hero-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: #f8f9ff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(67, 121, 184, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(67, 121, 184, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-card p {
  color: var(--color-dark);
  line-height: 1.6;
}

/* Map Section */
.map-section {
  padding: 5rem 0;
  background: white;
}

.map-container {
  margin-top: 3rem;
}

.parks-map {
  height: 400px;
  border-radius: 16px;
  background: #f0f2f5;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f2f5 0%, #e1e7f0 100%);
}

.map-placeholder-content {
  text-align: center;
  padding: 2rem;
}

.map-placeholder-content h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.map-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

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

.map-stat .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.map-stat .stat-label {
  font-size: 0.9rem;
  color: var(--color-dark);
}

.map-controls {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.filter-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-controls label {
  font-weight: 600;
  color: var(--color-dark);
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 2px solid #e1e7f0;
  border-radius: 8px;
  background: white;
  color: var(--color-dark);
  font-size: 1rem;
  min-width: 200px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Indoor Park Cards */
.indoor-park-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(67, 121, 184, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.indoor-park-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(67, 121, 184, 0.15);
}

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

.indoor-park-card .park-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.park-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: #4caf50;
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.park-content {
  padding: 1.5rem;
}

.park-name {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.park-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.park-description {
  margin-bottom: 1rem;
}

.park-description p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.park-amenities {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.amenity-icon {
  font-size: 1.5rem;
  padding: 0.25rem;
  background: #f0f2f5;
  border-radius: 8px;
  display: inline-block;
}

.park-details {
  margin-bottom: 1.5rem;
}

.park-hours,
.park-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
  font-size: 0.9rem;
}

.park-phone a {
  color: var(--color-primary);
  text-decoration: none;
}

.park-phone a:hover {
  text-decoration: underline;
}

.park-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* Cities Section */
.cities-section {
  padding: 5rem 0;
  background: #f8f9ff;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.city-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(67, 121, 184, 0.08);
  transition: all 0.3s ease;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(67, 121, 184, 0.15);
}

.city-image {
  height: 200px;
  overflow: hidden;
}

.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-content {
  padding: 2rem;
}

.city-content h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.city-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.city-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.park-count,
.areas-covered {
  padding: 0.5rem 1rem;
  background: #f0f2f5;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Tips Section */
.tips-section {
  padding: 5rem 0;
  background: white;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background: #f8f9ff;
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--color-primary);
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.tip-card h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.tip-card ul {
  list-style: none;
  padding: 0;
}

.tip-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-dark);
}

.tip-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Loading and animations */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f0f2f5;
  border-top: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 1rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .indoor-hero .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .map-controls {
    flex-direction: column;
    gap: 1rem;
  }
  
  .filter-select {
    min-width: 100%;
  }
  
  .cities-grid {
    grid-template-columns: 1fr;
  }
  
  .park-actions {
    flex-direction: column;
  }
  
  .park-actions .btn {
    text-align: center;
  }
}

:root {
  --color-primary: #4379b8;
  --color-accent: #9672ff;
  --color-secondary: #6b3ded;
  --color-bg: #ffffff;
  --color-dark: #0e0c0c;
  --gradient-primary: linear-gradient(135deg, #4379b8 0%, #9672ff 100%);
  --gradient-accent: linear-gradient(135deg, #9672ff 0%, #6b3ded 100%);
}

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

body {
  background: var(--color-bg);
  color: var(--color-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.header {
  background: var(--color-bg);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav-container,
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-menu,
.nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a,
.nav-link {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-link:hover {
  color: var(--color-primary);
}

.nav-menu a::after,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(67, 121, 184, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-dark);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #8A2BE2;
  color: #fff;
}

.btn-primary:hover {
  background: #4B0082;
  color: #fff;
}

.btn-secondary {
  background: #E6E6FA;
  color: #4B0082;
  border: 2px solid #4B0082;
}

.btn-secondary:hover {
  background: #4B0082;
  color: #fff;
  border: 2px solid #4B0082;
}

/* Stats Section */
.stats {
  background: var(--color-bg);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 1.1rem;
}

/* Featured Parks Section */
.featured-parks {
  padding: 6rem 0;
  background: var(--color-bg);
}

.featured-parks h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-dark);
}

.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* --- Improved Park Card Layout --- */
.park-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(107, 61, 237, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.15s, box-shadow 0.15s;
  height: 100%;
}
.park-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 24px rgba(107, 61, 237, 0.13), 0 2px 8px rgba(0,0,0,0.06);
}
.park-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.park-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  flex: 1 1 auto;
  text-align: center;
}
.park-content h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #6b3ded;
}
.park-location {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 1rem;
  color: #6b3ded;
  margin-bottom: 0.5rem;
}
.park-description {
  font-size: 1rem;
  color: #444;
  margin: 0.5rem 0 1rem 0;
  min-height: 48px;
}
.park-amenities-icons {
  display: flex;
  justify-content: center;
  gap: 0.7em;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.amenity-icon {
  display: flex;
  align-items: center;
  gap: 0.18em;
  background: #f3edff;
  color: #6b3ded;
  border-radius: 14px;
  padding: 0.18em 0.55em 0.18em 0.45em;
  font-size: 0.93em;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(107, 61, 237, 0.06);
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0.13em;
}
.amenity-icon span:first-child {
  font-size: 1.08em;
  margin-right: 0.13em;
  filter: drop-shadow(0 1px 1.5px #e0d2fa);
}
.amenity-icon:hover {
  background: #e6d8ff;
  color: #4b1fa6;
}
.park-link {
  display: inline-block;
  margin-top: auto;
  background: #6b3ded;
  color: #fff !important;
  border-radius: 12px;
  padding: 0.6em 1.4em;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(107, 61, 237, 0.09);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.park-link:hover {
  background: #4b1fa6;
  color: #fff !important;
  box-shadow: 0 3px 12px rgba(107, 61, 237, 0.13);
}
/* Responsive tweaks */
@media (max-width: 900px) {
  .parks-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .parks-grid {
    grid-template-columns: 1fr;
  }
  .park-image img {
    height: 140px;
  }
  .park-content {
    padding: 1.1rem 0.7rem 0.9rem 0.7rem;
  }
}

.park-amenities {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.amenity-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
  background: #f8f9fa;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
}

.park-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.park-link {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.875rem 1.75rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
}

.park-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(67, 121, 184, 0.25);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: white;
}

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

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Resources Section */
.resources {
  padding: 6rem 0;
  background: #f8f9fa;
}

.resources h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-dark);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.resource-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.resource-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Remove background-clip and -webkit-text-fill-color from .footer-section h3 */
.footer-section h3 {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 2rem !important;
}

.footer-section p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Search Container */
.search-container {
  margin-top: 2rem;
}

.search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-box input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  outline: none;
}

.search-box button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-box button:hover {
  background: var(--gradient-accent);
}

/* Filters Section */
.filters {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.filters-content {
  display: flex;
  gap: 1.5rem;
  align-items: end;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.9rem;
}

.filter-group select {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  background: white;
  min-width: 150px;
  cursor: pointer;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(67, 121, 184, 0.1);
}

/* Results Section */
.results {
  padding: 4rem 0;
  background: var(--color-bg);
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.results-count {
  font-size: 1.1rem;
  color: var(--color-dark);
  font-weight: 500;
}

.results-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.results-sort label {
  font-weight: 500;
  color: var(--color-dark);
}

.results-sort select {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  font-size: 0.9rem;
  background: white;
  cursor: pointer;
}

/* Loading State */
.loading {
  text-align: center;
  padding: 3rem;
  color: #666;
  font-size: 1.1rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination button {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: white;
  color: var(--color-dark);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pagination button:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.pagination button.active {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--color-primary);
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .parks-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-parks h2,
  .resources h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .filters-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group select {
    min-width: auto;
  }
  
  .results-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-box {
    flex-direction: column;
    border-radius: 16px;
  }
  
  .search-box input,
  .search-box button {
    border-radius: 0;
  }
  
  .search-box input {
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .resources-image-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .resource-img {
    height: 200px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .about-img {
    height: 300px;
  }
}

/* Park Details Page */
.park-details {
  padding: 2rem 0;
  background: var(--color-bg);
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

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

/* Enhanced Navigation Header */
.navigation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.navigation-header .breadcrumb {
  margin-bottom: 0;
  flex: 1;
}

.back-navigation {
  display: flex;
  align-items: center;
}

.back-navigation .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-navigation .btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.back-navigation .btn-secondary {
  background: #6c757d;
}

.back-navigation .btn-secondary:hover {
  background: #5a6268;
}

/* Responsive navigation header */
@media (max-width: 768px) {
  .navigation-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .back-navigation {
    width: 100%;
  }
  
  .back-navigation .btn {
    width: 100%;
    justify-content: center;
  }
}

.park-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.park-image-gallery {
  position: relative;
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.park-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.park-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.status-badge.operational {
  background: #10b981;
  color: white;
}

.park-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.park-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.park-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.content-section p {
  line-height: 1.7;
  color: #666;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/*
.feature-item {
  background: #f8f9fa !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
  padding: 1.5rem !important;
  border: 1px solid #ececec !important;
  text-align: left !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 1rem !important;
}

.feature-item h4 {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  color: var(--color-dark) !important;
}

.feature-item p {
  color: #666 !important;
  font-size: 0.97rem !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}
*/

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rule-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.rule-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.rule-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.rule-content p {
  color: #666;
  line-height: 1.6;
}

/* Sidebar */
.park-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item strong {
  color: var(--color-dark);
  font-weight: 600;
}

.contact-item a {
  color: var(--color-primary);
  text-decoration: none;
}

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

.hours-info p {
  color: #666;
  line-height: 1.6;
}

.nearby-parks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nearby-park-item {
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nearby-park-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(67, 121, 184, 0.1);
}

.nearby-park-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-dark);
}

.nearby-park-item p {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Design for Park Details */
@media (max-width: 768px) {
  .park-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .park-info h1 {
    font-size: 2rem;
  }
  
  .park-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .park-sidebar {
    position: static;
  }
  
  .park-actions {
    flex-direction: column;
  }
  
  .park-actions .btn {
    width: 100%;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .rule-item {
    flex-direction: column;
    text-align: center;
  }
}

/* Error and Loading States */
.error {
  text-align: center;
  padding: 4rem 0;
}

.error h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.error p {
  color: #666;
  margin-bottom: 2rem;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #666;
}

.no-results h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.no-results p {
  color: #666;
}

/* Nearby Park Links */
.nearby-park-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nearby-park-link:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Disabled Phone Button */
.phone-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Resources Page Styles */
.hero-resources {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.resources-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.resources-visual {
  margin-bottom: 4rem;
}

.resources-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.resource-image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.resource-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
}

.image-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.resource-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.resource-title {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.resource-description {
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 25px;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--color-bg);
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateX(5px);
}

.link-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.resource-link:hover .link-arrow {
  transform: translateX(5px);
}

/* Widget Container Styles */
.widget-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0; /* Add some vertical padding */
}

.widget-container img {
  max-width: 100%; /* Ensure images are responsive */
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .widget-container {
    padding: 10px 0;
  }
}
.featured-article {
  padding: 80px 0;
  background: white;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-title {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.article-excerpt {
  color: var(--color-dark);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--color-bg);
  border-radius: 10px;
  font-weight: 500;
  color: var(--color-dark);
}

.checklist-icon {
  font-size: 1.2rem;
  color: #28a745;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 25px;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.article-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .resource-card {
    padding: 30px;
  }
  
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  
  .article-title {
    font-size: 2rem;
  }
}

/* Resource Single Page Styles */
.resource-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.resource-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.resource-hero-small {
  padding: 3rem 0;
}

.resource-icon-large {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.resource-hero-title {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.resource-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.resource-content {
  padding: 60px 0;
  background: var(--color-bg);
}

.resource-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.resource-main {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.content-section p {
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 15px;
}

.content-section ul {
  list-style: none;
  padding: 0;
}

.content-section ul li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.content-section ul li::before {
  content: '•';
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tip-item {
  background: var(--color-bg);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
}

.tip-item h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.tip-item p {
  color: var(--color-dark);
  line-height: 1.6;
  margin: 0;
}

.resource-links-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-section {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.sidebar-section h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.quick-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-nav-link {
  color: var(--color-dark);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.quick-nav-link:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

.related-resources {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--color-bg);
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-dark);
  transition: all 0.3s ease;
}

.related-resource-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateX(5px);
}

.related-icon {
  font-size: 1.5rem;
}

.related-title {
  font-weight: 500;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.share-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
}

.share-facebook {
  background: #1877f2;
  color: white;
}

.share-twitter {
  background: #1da1f2;
  color: white;
}

.share-email {
  background: var(--color-primary);
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .resource-card {
    padding: 30px;
  }
  
  .resource-hero-title {
    font-size: 2.5rem;
  }
  
  .tip-grid {
    grid-template-columns: 1fr;
  }
  
  .resource-sidebar {
    position: static;
  }
}

/* About Page Styles */
.hero-about {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.mission-section {
  padding: 80px 0;
  background: white;
}

.mission-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.mission-text p {
  color: var(--color-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mission-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mission-stats .stat-item {
  text-align: center;
  padding: 30px;
  background: var(--color-bg);
  border-radius: 16px;
  border-left: 4px solid var(--color-primary);
}

.mission-stats .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.mission-stats .stat-label {
  font-size: 1.1rem;
  color: var(--color-dark);
  font-weight: 600;
}

.story-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.story-content p {
  color: var(--color-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 400px;
}

.placeholder-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
}

.image-placeholder p {
  color: var(--color-dark);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.values-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  min-height: 100%;
  height: 100%;
  flex: 1 1 0%;
  text-align: center;
  background: #f8f9fa;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ececec;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  color: var(--color-dark);
  line-height: 1.6;
  flex: 1 1 auto;
}

.team-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-member {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.avatar-icon {
  font-size: 2.5rem;
}

.team-member h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.member-role {
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.member-bio {
  color: var(--color-dark);
  line-height: 1.6;
}

.impact-section {
  padding: 80px 0;
  background: white;
}

.impact-content h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

.impact-content > p {
  color: var(--color-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 50px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.impact-item {
  text-align: center;
  padding: 30px;
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.impact-item h4 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.impact-item p {
  color: var(--color-dark);
  line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--color-primary);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: var(--color-primary);
}

.cta-section .btn-primary {
  background: #8A2BE2 !important;
  color: #fff !important;
  border: none !important;
}
.cta-section .btn-primary:hover {
  background: #4B0082 !important;
  color: #fff !important;
}
.cta-section .btn-secondary {
  background: #E6E6FA !important;
  color: #4B0082 !important;
  border: 2px solid #4B0082 !important;
}
.cta-section .btn-secondary:hover {
  background: #4B0082 !important;
  color: #fff !important;
  border: 2px solid #4B0082 !important;
}

/* Remove background-clip and -webkit-text-fill-color from .footer-section h3 */
.footer-section h3 {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 2rem !important;
}

.footer-section ul li a {
  color: #fff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 1.1rem !important;
  cursor: default !important;
}
.footer-section ul li a:hover {
  color: #fff !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .mission-text h2,
  .story-content h2,
  .section-title,
  .impact-content h2,
  .cta-content h2 {
    font-size: 2rem;
  }
}

.footer a,
.footer-section a,
.footer-section ul li a {
  color: #fff !important;
  text-decoration: none !important;
}
.footer a:hover,
.footer-section a:hover,
.footer-section ul li a:hover {
  color: #fff !important;
  text-decoration: none !important;
}

.contact-section {
  padding: 5rem 0;
  background: #f8f9fa;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.contact-form-container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(67, 121, 184, 0.08);
  padding: 2.5rem 2rem;
  width: 100%;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #4B0082;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid #E6E6FA;
  border-radius: 10px;
  font-size: 1rem;
  background: #f8f9fa;
  color: #1A1A1A;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #4B0082;
  outline: none;
  background: #fff;
  box-shadow: 0 4px 16px rgba(138,43,226,0.12);
}
.contact-form button {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 1.1rem;
}
.contact-info-container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(67, 121, 184, 0.08);
  padding: 2.5rem 2rem;
}
.contact-info-block h3 {
  color: #4B0082;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.contact-info-block p,
.contact-info-block a {
  color: #1A1A1A;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  text-decoration: none;
}
.contact-social-link {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #8A2BE2;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-social-link:hover {
  color: #4B0082;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-container,
  .contact-info-container {
    padding: 2rem 1rem;
  }
}

.contact-form input, .contact-form textarea {
  background: #fff !important;
  border: 1.5px solid #8A2BE2 !important;
  box-shadow: 0 2px 8px rgba(138,43,226,0.07) !important;
}
.contact-form input:focus, .contact-form textarea:focus {
  border: 2px solid #4B0082 !important;
  box-shadow: 0 4px 16px rgba(138,43,226,0.12) !important;
}

.special-download-section {
  padding: 2.5rem 0 0 0;
}
.special-download-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(67,121,184,0.08);
  padding: 2.5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.special-download-card h2 {
  color: #4B0082;
  margin-bottom: 1rem;
}
.special-download-card p {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.tabbed-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(67,121,184,0.08);
  padding: 2.5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.tab-btn {
  background: #E6E6FA;
  color: #4B0082;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: #8A2BE2;
  color: #fff;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.helpful-info-section {
  padding: 2.5rem 0 0 0;
}
.helpful-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .helpful-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .helpful-info-grid {
    grid-template-columns: 1fr;
  }
}
.helpful-info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(67,121,184,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.helpful-info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.helpful-info-title {
  font-weight: 700;
  color: #4B0082;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.helpful-info-text {
  color: #333;
  font-size: 1rem;
}

.cta-section-white {
  background: #fff;
  color: #1A1A1A;
  margin-bottom: 2rem;
}

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

.form-max-width {
  max-width: 600px;
  margin: 0 auto;
}
.featured-benefits-note {
  margin-top: 1rem;
  color: #4B0082;
  font-size: 1rem;
}

/* City-specific Indoor Dog Parks Styles */

/* City-specific Hero */
.city-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 6rem 0 4rem 0;
  text-align: center;
}

.city-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.city-hero .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* City Tips Section */
.tips-section {
  background: #f8f9fa;
  padding: 6rem 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.tip-card p {
  color: #666;
  line-height: 1.6;
}

/* Why Indoor Section for Cities */
.why-indoor-section {
  padding: 6rem 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

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

.benefit-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Popular Areas for Cities */
.popular-areas {
  padding: 6rem 0;
  background: #f8f9fa;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.area-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.area-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.area-card p {
  color: #666;
  margin-bottom: 1rem;
}

.area-count {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Park Badges */
.park-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.badge-type {
  background: var(--color-primary);
  color: white;
}

.badge-area {
  background: var(--color-secondary);
  color: white;
}

/* Park Actions for Indoor Pages */
.park-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.park-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.park-link:hover {
    background: var(--color-secondary);
    transform: translateY(-1px);
    color: white;
}

.park-link.secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #6b3ded;
    font-weight: 500;
}

.park-link.secondary:hover {
    background: #6b3ded;
    color: white;
    border: 1px solid #6b3ded;
}

/* Results Header for Indoor Pages */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.results-count {
    color: #666;
    font-size: 1rem;
}

/* Pagination for Indoor Pages */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover {
    background: var(--color-primary);
    color: white;
}

.pagination-btn.active {
    background: var(--color-primary);
    color: white;
}

.pagination-ellipsis {
    padding: 0.5rem;
    color: #666;
}

/* Mobile responsiveness for indoor pages */
@media (max-width: 768px) {
    .park-actions {
        flex-direction: column;
    }
    
    .park-link {
        flex: none;
        width: 100%;
    }
    
    .results-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        min-width: 35px;
    }
}

/* Google Maps Section */
.map-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.map-header p {
  color: #666;
  font-size: 1.1rem;
}

.map-container {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

#google-map {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

/* Responsive adjustments for map */
@media (max-width: 768px) {
  #google-map {
    height: 300px !important;
  }
  
  .map-header h2 {
    font-size: 1.5rem;
  }
}

/* Map Info Window Styles */
.map-info-window {
  max-width: 300px;
  padding: 10px;
}

.map-info-window h4 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 16px;
}

.map-info-window p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
}

.info-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.info-actions .btn {
  padding: 5px 12px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.info-actions .btn-primary {
  background-color: #007bff;
  color: white;
}

.info-actions .btn-secondary {
  background-color: #6c757d;
  color: white;
}

/* Enhanced Park Card Styles */
.park-status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.park-status-badge.open {
  background-color: #28a745;
  color: white;
}

.park-status-badge.temporarily-closed {
  background-color: #ffc107;
  color: #333;
}

.park-status-badge.permanently-closed {
  background-color: #dc3545;
  color: white;
}

/* Tips Grid Enhancement for 5 cards */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .tips-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Fort Worth specific tips layout - 3x2 grid */
.fort-worth-tips .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .fort-worth-tips .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .fort-worth-tips .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* San Antonio specific tips layout - 3x2 grid */
.san-antonio-tips .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .san-antonio-tips .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .san-antonio-tips .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Dallas specific tips layout - 5 tips with flexible layout */
.dallas-tips .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .dallas-tips .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .dallas-tips .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Houston specific tips layout - 3x2 grid */
.houston-tips .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .houston-tips .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .houston-tips .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Indoor parks page specific styles */
.indoor-dog-parks-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .indoor-dog-parks-benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .indoor-dog-parks-benefits .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Map Error Styles */
.map-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background-color: #f8f9fa;
  color: #6c757d;
  font-size: 16px;
  border-radius: 8px;
  border: 2px dashed #dee2e6;
}
