/* ===== Experiences Page Styles ===== */

/* Override body for experiences page */
body {
  padding-top: 80px; /* Account for fixed nav */
}

/* Active navigation state */
.nav-links a.active {
  color: var(--accent-500) !important;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-500);
}

/* Section Headers Override for Dark Theme */
.section-header h2 {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent-500);
}

.breadcrumb i {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ===== Experiences Hero ===== */
.experiences-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
  padding: 2rem 0;
}

.experiences-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  z-index: 1;
}

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

.experiences-hero .hero-content {
  color: white;
}

.experiences-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.experiences-hero .hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 500px;
}

/* ===== City Selector ===== */
.city-selector {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.city-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition-base);
  min-width: 120px;
}

.city-option.active {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--accent-500);
  transform: translateY(-2px);
}

.city-option.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.city-option i {
  font-size: 1.5rem;
  color: var(--accent-500);
}

.city-option span {
  font-weight: 600;
  font-size: 1rem;
}

.experience-count {
  font-size: 0.75rem;
  color: var(--accent-500);
  font-weight: 500;
}

.coming-soon {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ===== Experiences Showcase ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.experiences-showcase {
  position: relative;
  width: 100%;
  height: 400px;
}

.showcase-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  color: white;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
  min-width: 120px;
}

.showcase-card i {
  font-size: 2rem;
  color: var(--accent-500);
}

.card-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: 5%;
  animation-delay: 1.5s;
}

.card-3 {
  top: 50%;
  right: 40%;
  animation-delay: 3s;
}

/* ===== Filters Bar ===== */
.filters-bar {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
}

.filters-bar.sticky {
  position: sticky;
  top: 80px;
}

.filters-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 140px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-group label i {
  font-size: 0.875rem;
  color: var(--accent-500);
}

.filter-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.clear-filters-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  color: var(--gray-700);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-left: auto;
}

.clear-filters-btn:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

/* ===== Categories Showcase ===== */
.categories-showcase {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  position: relative;
}

.categories-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 0%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.categories-showcase .section-container {
  position: relative;
  z-index: 2;
}

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

.category-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
  transition: var(--transition-slow);
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
  background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
}

.category-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  position: relative;
  z-index: 2;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 600;
}

.category-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.category-count {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 107, 53, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

/* ===== Featured Experiences ===== */
.featured-experiences {
  padding: 4rem 0;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 50%, #141414 100%);
  position: relative;
}

.featured-experiences::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 70% 0%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  z-index: 1;
}

.featured-experiences .section-container {
  position: relative;
  z-index: 2;
}

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

/* ===== All Experiences ===== */
.all-experiences {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  position: relative;
}

.all-experiences::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.all-experiences .section-container {
  position: relative;
  z-index: 2;
}

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

.view-toggle {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  padding: 0.5rem;
  border: 1px solid var(--gray-300);
  background: white;
  color: var(--gray-600);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-btn.active,
.view-btn:hover {
  background: var(--accent-500);
  color: white;
  border-color: var(--accent-500);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.experiences-grid.list-view {
  grid-template-columns: 1fr;
}

/* ===== Experience Cards ===== */
.experience-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
}

.experience-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
}

.experience-image {
  position: relative;
  height: 200px;
  background: linear-gradient(45deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.image-placeholder {
  text-align: center;
  color: var(--gray-500);
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.experience-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge.difficulty-easy {
  background: var(--success-100);
  color: var(--success-700);
}

.badge.difficulty-moderate {
  background: var(--warning-100);
  color: var(--warning-700);
}

.badge.difficulty-challenging {
  background: var(--error-100);
  color: var(--error-700);
}

.badge.type-free {
  background: var(--success-500);
  color: white;
}

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

.badge.type-vendor-based {
  background: var(--accent-500);
  color: white;
}

.badge.featured {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: var(--gray-900);
}

.experience-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.experience-rating i {
  color: #ffd700;
}

.experience-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.experience-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  line-height: 1.3;
}

.experience-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.experience-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
  font-size: 0.95rem;
}

.experience-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.experience-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-500);
}

.price-range {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.experience-cta {
  background: linear-gradient(135deg, var(--accent-500) 0%, #ff8c5a 100%);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.experience-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.experience-cta:hover::before {
  left: 100%;
}

.experience-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* List View */
.experiences-grid.list-view .experience-card {
  flex-direction: row;
  height: 200px;
}

.experiences-grid.list-view .experience-image {
  width: 300px;
  height: 100%;
  flex-shrink: 0;
}

.experiences-grid.list-view .experience-content {
  padding: 1.5rem 2rem;
}

.experiences-grid.list-view .experience-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Loading States ===== */
.loading-state {
  margin-bottom: 3rem;
}

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

.experience-card-skeleton {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  position: relative;
}

.experience-card-skeleton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 1.5s infinite;
}

.skeleton-image {
  height: 200px;
  background: var(--gray-200);
}

.skeleton-content {
  padding: 1.5rem;
}

.skeleton-line {
  height: 1rem;
  background: var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.skeleton-line.short {
  width: 60%;
}

.skeleton-line.medium {
  width: 80%;
}

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-600);
}

.empty-state i {
  font-size: 4rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.empty-state p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ===== Load More ===== */
.load-more-container {
  text-align: center;
  margin-top: 2rem;
}

/* ===== CTA Experiences ===== */
.cta-experiences {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #141414 50%, #1a1a1a 75%, #0a0a0a 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-experiences::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.cta-experiences .section-container {
  position: relative;
  z-index: 2;
}

.cta-experiences .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-experiences .cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}

.cta-feature i {
  font-size: 1.25rem;
  color: var(--accent-500);
}

/* ===== Experience Modal ===== */
.experience-modal-content {
  max-width: 800px;
  width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: var(--radius-2xl);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: var(--radius-full);
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.modal-header-image {
  height: 300px;
  background: linear-gradient(45deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.modal-content-body {
  padding: 2rem;
}

.modal-experience-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.modal-experience-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.modal-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-meta-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-500);
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-meta-content h4 {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-meta-content p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.modal-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.modal-pricing {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 2rem;
}

.modal-pricing h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.modal-pricing .price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ===== Utility Classes ===== */
.hidden {
  display: none !important;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .experiences-hero .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .filters-container {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .filter-group {
    min-width: auto;
  }
  
  .clear-filters-btn {
    margin-left: 0;
    align-self: center;
  }
  
  .featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .cta-features {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .experiences-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .city-selector {
    justify-content: center;
  }
  
  .filters-bar {
    position: static;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .experience-card {
    min-width: 280px;
  }
  
  .experiences-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .experiences-grid.list-view .experience-card {
    flex-direction: column;
    height: auto;
  }
  
  .experiences-grid.list-view .experience-image {
    width: 100%;
    height: 200px;
  }
  
  .results-info {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .experience-modal-content {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .modal-content-body {
    padding: 1.5rem;
  }
  
  .modal-experience-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .experiences-hero .hero-title {
    font-size: 2rem;
  }
  
  .city-option {
    min-width: 100px;
    padding: 1rem 0.75rem;
  }
  
  .filters-container {
    padding: 0 1rem;
  }
  
  .experience-card {
    min-width: 260px;
  }
  
  .experiences-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

/* ===== Animations ===== */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
} 