/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #c93b32;
  --text-dark: #2e2e2e;
  --text-gray: #666;
  --border-gray: #e0e0e0;
  --bg-light: #f7f7f7;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
  margin-top: 2rem;
}

/* Header */
.header {
  background: white;
  border-bottom: 1px solid var(--border-gray);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo img {
  height: 45px;
  max-width: 250px;
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-red);
}

.main-nav a.admin-link {
  background: var(--primary-red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.main-nav a.admin-link:hover {
  background: #c0392b;
  color: white;
}

/* Hide navigation on mobile by default */
/* Mobile responsive handled at the bottom of the file */

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-search-btn,
.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.header-search-btn {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-gray);
}

.header-search-btn:hover {
  background: #e8e8e8;
  color: var(--primary-red);
}

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

.header-cta-btn:hover {
  background: #c0392b;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  animation: heroContentFadeIn 1s ease-out;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Hero Search Bar */
.hero-search-container {
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.8rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  max-width: 100%;
  width: 100%;
}

.hero-search-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 50px;
  pointer-events: none;
}

.search-input-group {
  display: flex;
  flex: 1;
  gap: 0.5rem;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.search-field {
  position: relative;
  flex: 1;
  min-width: 120px;
}

.search-field i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  z-index: 2;
  font-size: 0.9rem;
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  transition: all 0.3s ease;
  outline: none;
  height: 45px;
}

.search-field input:focus,
.search-field select:focus {
  background: white;
  box-shadow: 0 0 0 2px rgba(201, 59, 50, 0.2);
  transform: scale(1.02);
}

.search-field input::placeholder {
  color: #999;
  font-size: 0.85rem;
}

.hero-search-btn {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c0392b 100%);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  height: 45px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-search-btn::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.6s ease;
}

.hero-search-btn:hover::before {
  left: 100%;
}

.hero-search-btn:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93328 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 59, 50, 0.3);
}

.hero-search-btn:active {
  transform: translateY(0);
}

/* Hero Tags */
.hero-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.tag {
  background: var(--primary-red);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.slider-nav:hover {
  background: white;
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* Recent Businesses */
.recent-businesses {
  padding: 4rem 0;
  background: white;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 4px;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border-gray);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
}

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

.view-btn {
  background: white;
  border: 1px solid var(--border-gray);
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}

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

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

.business-card {
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.business-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

.image-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.business-card:hover .image-nav {
  opacity: 1;
}

.nav-btn {
  background: rgba(255,255,255,0.9);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  font-size: 0.75rem;
  color: white;
  font-weight: 500;
}

.badge.green {
  background: #4caf50;
}

.badge.red {
  background: var(--primary-red);
}

.badge.blue {
  background: #2196f3;
}

.badge.dark {
  background: #424242;
}

.business-time {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(201, 59, 50, 0.9);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  font-size: 0.75rem;
}

.business-info {
  padding: 1.5rem;
}

.business-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.business-category {
  color: #4caf50;
  font-size: 0.85rem;
  font-weight: 500;
}

.business-price {
  color: var(--text-gray);
  font-weight: 600;
}

.business-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.business-description {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.business-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.business-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.85rem;
}

.business-location i {
  color: var(--primary-red);
}

.business-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.business-rating i {
  color: #ffc107;
}

/* Business Contact Info */
.business-address,
.business-phone,
.business-hours {
  font-size: 0.8rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.business-address i,
.business-phone i,
.business-hours i {
  color: var(--primary-red);
  width: 12px;
}

/* Blog Articles Styles */
.news-excerpt {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.news-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.news-card h3 a:hover {
  color: var(--primary-red);
}

/* Location Cards */
.location-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.location-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  height: 250px;
}

.location-card.large {
  grid-column: span 2;
}

.location-card.small {
  grid-column: span 3;
  height: 200px;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.location-card:hover img {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding: 2rem 1.5rem;
}

.location-overlay h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Why Section */
.why-section {
  padding: 4rem 0;
  background: white;
}

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

.feature-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-red);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* Categories Section */
.categories-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.category-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  min-height: 220px;
  justify-content: center;
}

.category-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: var(--primary-red);
  transform: translateY(-4px);
}

.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-icon.orange {
  background: #ffe0d0;
  color: #ff6b35;
}

.category-icon.blue {
  background: #d0e8ff;
  color: #2196f3;
}

.category-icon.pink {
  background: #ffd0e8;
  color: #e91e63;
}

.category-icon.rose {
  background: #ffd0d8;
  color: #f44336;
}

.category-icon.green {
  background: #d0ffe0;
  color: #4caf50;
}

.category-icon.gray {
  background: #e8e8e8;
  color: #757575;
}

.category-icon.beige {
  background: #f5e8d0;
  color: #8d6e63;
}

.category-icon.yellow {
  background: #fff8d0;
  color: #ffc107;
}

.category-card span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
  text-align: center;
}

.category-card .business-count {
  font-size: 0.85rem;
  color: var(--primary-red);
  font-weight: 500;
  margin-top: 0.25rem;
  display: block;
}

/* Category cards with images */
.category-card.has-image {
  padding: 0;
  overflow: hidden;
  height: 280px;
  border: 2px solid #e0e0e0;
}

.category-card.has-image:hover {
  border-color: var(--primary-red);
}

.category-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  padding: 2.5rem 1.5rem 1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-name {
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.category-overlay .business-count {
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.more-btn {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 0.8rem 3rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.more-btn:hover {
  background: #b33229;
}

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

.map-container {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* News Section */
.news-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

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

.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  cursor: pointer;
}

.news-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 1.5rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-category {
  color: #2196f3;
  font-size: 0.85rem;
  font-weight: 500;
}

.news-date {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.news-content h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.news-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.news-author span {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.read-more-btn {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 0.8rem 3rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background: #b33229;
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
  background: white;
}

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

.review-card {
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 1.5rem;
}

.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-rating-number {
  width: 60px;
  height: 60px;
  background: #fff8d0;
  color: #ffc107;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.review-business {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.review-stars {
  color: #ffc107;
}

.review-text {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.review-author {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.review-author strong {
  color: var(--text-dark);
  margin-right: 0.5rem;
}

.review-author span {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.review-helpful {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-gray);
}

.review-helpful span {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.helpful-btn {
  background: white;
  border: 1px solid var(--border-gray);
  width: 35px;
  height: 35px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.helpful-btn:hover {
  background: var(--bg-light);
  color: var(--primary-red);
}

/* Complete Guide Section */
.complete-guide-section {
  padding: 4rem 0;
  background: white;
}

.guide-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.guide-main-title {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.guide-intro {
  margin-bottom: 2.5rem;
}

.guide-intro p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.guide-section {
  margin-bottom: 2.5rem;
}

.guide-section h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.guide-section h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #555;
  line-height: 1.7;
  position: relative;
}

.guide-list li:before {
  content: "•";
  color: var(--primary-red);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}

.types-two-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2.5rem !important;
  margin-top: 1.5rem;
}

.types-two-columns > div {
  display: block;
}

.types-two-columns h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.types-two-columns h4:first-child {
  margin-top: 0;
}

.types-two-columns .type-list {
  margin-bottom: 1.5rem;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.type-column h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.type-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.type-list li {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: #2563eb;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
}

.type-list li:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.type-list li:before {
  content: "▸";
  color: #2563eb;
  font-size: 0.9rem;
  position: absolute;
  left: 0;
}

.professional-tip {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.tip-icon {
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
}

.tip-content h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tip-content p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .guide-main-title {
    font-size: 1.4rem;
  }
  
  .types-two-columns {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .professional-tip {
    flex-direction: column;
  }
  
  .complete-guide-section {
    padding: 3rem 0;
  }
}

/* Submit CTA */
.submit-cta {
  padding: 4rem 0;
  background: var(--bg-light);
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-content h2 {
  font-size: 2rem;
  color: var(--text-dark);
}

.submit-btn {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: #b33229;
}

/* Footer */
.footer {
  background: #2e2e2e;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
}

.footer-bottom p {
  color: #b0b0b0;
  font-size: 0.9rem;
}

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

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
  .search-bar {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-card.large,
  .location-card.small {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .cta-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* ===== HEADER MOBILE ===== */
  .menu-toggle {
    display: block;
    z-index: 1000;
    padding: 0.5rem;
  }

  .header-content {
    grid-template-columns: auto 1fr auto;
  }
  
  /* Ocultar buscador y añadir negocio en móvil */
  .header-actions {
    display: none !important;
  }
  
  /* Menú móvil mejorado */
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .main-nav.mobile-show {
    transform: translateX(0);
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .main-nav ul li {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .main-nav ul li:last-child {
    border-bottom: none;
  }
  
  .main-nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: background 0.2s ease;
  }
  
  .main-nav ul li a:hover {
    background: #f8f9fa;
  }
  
  /* ===== HERO MOBILE ===== */
  .hero {
    min-height: 500px;
    padding: 2rem 0;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  /* Hero search mejorado en móvil */
  .hero-search-container {
    margin: 0 1rem 1.5rem 1rem;
    padding: 0;
  }
  
  .hero-search-bar {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }
  
  .search-input-group {
    flex-direction: column;
    width: 100%;
    gap: 0.875rem;
  }
  
  .search-field {
    min-width: 100%;
  }
  
  .search-field input,
  .search-field select {
    border-radius: 12px;
    height: 50px;
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    font-size: 0.95rem;
    border: 2px solid #e1e5e9;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
  }
  
  .search-field input:focus,
  .search-field select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(201, 59, 50, 0.1);
    outline: none;
  }
  
  .search-field i {
    font-size: 1rem;
    left: 1rem;
    color: #666;
  }
  
  .hero-search-btn {
    width: 100%;
    height: 50px;
    font-size: 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .hero-search-btn:active {
    transform: scale(0.98);
  }
  
  /* ===== BUSINESS GRID ===== */
  .business-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .business-card {
    max-width: 100%;
  }

  /* ===== FOOTER ===== */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  /* ===== SECCIONES GENERALES ===== */
  .section {
    padding: 2rem 0;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }

  /* ===== BUSINESS DETAIL PAGE ===== */
  .business-detail {
    padding: 2rem 0 !important;
  }

  .business-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .business-main-content h1 {
    font-size: 1.75rem !important;
  }

  .business-main-content h2 {
    font-size: 1.3rem !important;
  }

  .business-main-content img {
    height: 250px !important;
  }

  .business-sidebar {
    order: 2;
  }
}

/* ===== TABLET BREAKPOINT ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .business-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .header-actions .header-search-btn span,
  .header-actions .header-cta-btn span {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  background-color: #f9f9f9;
  padding: 3rem 0;
  min-height: calc(100vh - 400px);
}

.legal-content {
  background-color: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  color: var(--primary-red);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-red);
}

.legal-intro {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-section h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

.legal-section p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section li {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--primary-red);
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-section strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Responsive for legal pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem;
  }
  
  .legal-content h1 {
    font-size: 1.8rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
  
  .legal-section h3 {
    font-size: 1.1rem;
  }
}

/* Blog Article Content Lists and Typography */
.article-body ul,
.article-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-body ul {
  list-style-type: disc;
}

.article-body ol {
  list-style-type: decimal;
}

.article-body li {
  margin: 0.75rem 0;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-body ul ul,
.article-body ol ul {
  list-style-type: circle;
  margin-top: 0.5rem;
}

.article-body ul ol,
.article-body ol ol {
  list-style-type: lower-alpha;
  margin-top: 0.5rem;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border: 1px solid var(--border-gray);
}

.article-body table th,
.article-body table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-gray);
  text-align: left;
}

.article-body table th {
  background-color: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
}

.article-body table tr:nth-child(even) {
  background-color: #fafafa;
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.pagination-btn {
  background-color: var(--primary-red);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover {
  background-color: #a02d25;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 59, 50, 0.3);
}

.pagination-info {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .pagination {
    gap: 1rem;
  }
  
  .pagination-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .pagination-info {
    font-size: 0.9rem;
  }
}

