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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.brand a {
    color: #1a202c;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand i {
    margin-right: 0.5rem;
    color: #e53e3e;
}

.search-bar {
    flex: 1;
    max-width: 400px;
    margin-left: 2rem;
}

.search-input {
    display: flex;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.search-input i {
    padding: 0.75rem 1rem;
    color: #718096;
}

.search-input input {
    flex: 1;
    border: none;
    padding: 0.75rem 0;
    outline: none;
    background: transparent;
}

.search-input button {
    background: #3182ce;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
}

.search-input button:hover {
    background: #2c5282;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.hero-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.search-container button {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.1rem;
}

.search-container button:hover {
    background: #c53030;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: #f7fafc;
}

.stats-section .container {
    padding: 0 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #718096;
    font-weight: 500;
}

/* Popular States */
.popular-states {
    padding: 4rem 0;
    background: white;
}

.popular-states h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a202c;
}

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

.state-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s;
}

.state-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3182ce;
}

.state-icon {
    width: 60px;
    height: 60px;
    background: #3182ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.state-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.state-card p {
    color: #718096;
    font-size: 0.9rem;
}

.view-all-states {
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid #3182ce;
    color: #3182ce;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #3182ce;
    color: white;
}

/* Featured Restaurants */
.featured-section {
    padding: 4rem 0;
    background: #f7fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header p {
    color: #718096;
    font-size: 1.1rem;
}

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

.restaurants-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.restaurants-grid.list-view .restaurant-card {
    display: flex;
    max-width: none;
    height: 150px;
}

.restaurants-grid.list-view .card-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
}

.restaurants-grid.list-view .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.restaurants-grid.list-view .card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.restaurants-grid.list-view .description {
    display: none;
}

.restaurant-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.restaurant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.rating-badge i {
    color: #fbbf24;
    margin-right: 0.25rem;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.75rem;
}

.card-content h3 a {
    color: #1a202c;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-content h3 a:hover {
    color: #3182ce;
}

.location {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.location i {
    margin-right: 0.5rem;
}

.cuisine {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.description {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

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

.reviews {
    color: #718096;
    font-size: 0.9rem;
}

.price {
    color: #38a169;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.btn-primary {
    display: inline-block;
    background: #3182ce;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2c5282;
}

/* All States Section */
.all-states {
    padding: 4rem 0;
    background: white;
}

.all-states h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a202c;
}

.states-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.state-link {
    padding: 1rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #2d3748;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
}

.state-link:hover {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background: #f7fafc;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a202c;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #3182ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.step p {
    color: #718096;
    line-height: 1.6;
}

/* Restaurant Detail Page */
.restaurant-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

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

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

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
}

.hero-content {
    color: white;
    padding: 3rem 0;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-meta .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.hero-meta .rating i {
    color: #fbbf24;
}

.hero-meta .rating .reviews {
    color: white;
}

.hero-meta .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.restaurant-details {
    padding: 4rem 0;
    background: #f7fafc;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content {
    display: grid;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-card h2 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h2 i {
    color: #3182ce;
    font-size: 1.25rem;
}

.info-items {
    display: grid;
    gap: 1.5rem;
}

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

.info-item i {
    color: #3182ce;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-item strong {
    color: #1a202c;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.info-item a {
    color: #3182ce;
    text-decoration: none;
}

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

.sidebar {
    display: grid;
    gap: 2rem;
    align-content: start;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-card h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.action-buttons {
    display: grid;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

.action-btn.primary {
    background: #3182ce;
    color: white;
}

.action-btn.primary:hover {
    background: #2c5282;
    transform: translateY(-1px);
}

.action-btn.secondary {
    background: #f7fafc;
    color: #3182ce;
    border: 2px solid #e2e8f0;
}

.action-btn.secondary:hover {
    background: #e2e8f0;
    border-color: #3182ce;
}

.map-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-card h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

#restaurant-map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.additional-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.additional-info h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.additional-info .info-item {
    margin-bottom: 1rem;
    display: block;
}

.additional-info .info-item:last-child {
    margin-bottom: 0;
}

.additional-info strong {
    color: #1a202c;
    font-weight: 600;
}

.additional-info p {
    color: #4a5568;
    margin: 0.25rem 0 0 0;
    line-height: 1.5;
}

.review-summary, .review-text {
    margin-bottom: 2rem;
}

.review-summary:last-child, .review-text:last-child {
    margin-bottom: 0;
}

.review-summary h3, .review-text h3 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.review-summary p, .review-text p {
    color: #4a5568;
    line-height: 1.6;
}

/* Restaurant Gallery */
.restaurant-gallery {
    padding: 3rem 0;
    background: white;
}

.restaurant-gallery h2 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

/* Enhanced Info Grids */
.info-grid {
    display: grid;
    gap: 1.5rem;
}

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

.hours-item {
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.hours-item strong {
    color: #1a202c;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.hours-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

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

.amenity-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
}

.amenity-item i {
    color: #3182ce;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.amenity-item strong {
    color: #1a202c;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.amenity-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.description-text {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

.review-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
}

.review-section:last-child {
    margin-bottom: 0;
}

.review-section h3 {
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.review-section p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Sidebar */
.rating-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.rating-card h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-score .score {
    font-size: 3rem;
    font-weight: 700;
    color: #3182ce;
}

.rating-score .stars {
    display: flex;
    gap: 0.25rem;
}

.rating-score .stars i {
    color: #e2e8f0;
    font-size: 1.25rem;
}

.rating-score .stars i.filled {
    color: #fbbf24;
}

.review-count {
    color: #718096;
    font-size: 1rem;
    margin: 0;
}

.map-address {
    color: #718096;
    font-size: 0.9rem;
    margin: 1rem 0 0 0;
    text-align: center;
}

.quick-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quick-info-card h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.quick-info-items {
    display: grid;
    gap: 1rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 6px;
}

.quick-info-item i {
    color: #3182ce;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.quick-info-item span {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-meta .price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.hero-meta .published {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Reviews Slider */
.reviews-slider {
    margin-bottom: 2rem;
}

.reviews-slider:last-child {
    margin-bottom: 0;
}

.reviews-slider h3 {
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.slider-container {
    position: relative;
    background: #f7fafc;
    border-radius: 8px;
    padding: 2rem;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    min-height: 80px;
}

.review-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-slide.active {
    display: block;
    opacity: 1;
}

.review-slide p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    text-align: center;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    background: #3182ce;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #2c5282;
    transform: scale(1.1);
}

.slider-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

/* Nearby Restaurants */
.nearby-restaurants {
    padding: 4rem 0;
    background: white;
}

.nearby-restaurants h2 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

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

.nearby-card {
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nearby-image {
    height: 150px;
    overflow: hidden;
}

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

.nearby-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.nearby-content {
    padding: 1.5rem;
}

.nearby-content h3 {
    margin-bottom: 0.5rem;
}

.nearby-content h3 a {
    color: #1a202c;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.nearby-content h3 a:hover {
    color: #3182ce;
}

.nearby-cuisine {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.nearby-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nearby-rating i {
    color: #fbbf24;
}

.nearby-rating span {
    font-size: 0.9rem;
    color: #4a5568;
}

.nearby-reviews {
    color: #718096 !important;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f7fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.75rem;
    color: #718096;
}

.breadcrumb-item a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #2c5282;
    text-decoration: underline;
}

.breadcrumb-item span {
    color: #4a5568;
    font-weight: 500;
}

/* Page Content Styles */
.page-content {
    padding: 3rem 0;
    background: #f7fafc;
    min-height: 80vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    color: #1a202c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #718096;
    font-size: 1.2rem;
    margin: 0;
}

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

.main-content {
    display: grid;
    gap: 2rem;
}

.content-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-section h3 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.content-section p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-section ul {
    color: #4a5568;
    line-height: 1.6;
    margin-left: 1.5rem;
}

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

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
}

.feature-item i {
    font-size: 2.5rem;
    color: #3182ce;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

.stats-card, .cta-card, .contact-info-card, .faq-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.stats-card h3, .cta-card h3, .contact-info-card h3, .faq-card h3 {
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3182ce;
}

.stat-label {
    color: #4a5568;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #3182ce;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: #1a202c;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #4a5568;
    margin: 0;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item strong {
    color: #1a202c;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    color: #2d3748;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Error Page */
.error-page {
    padding: 4rem 0;
    background: #f7fafc;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.error-icon {
    font-size: 4rem;
    color: #718096;
    margin-bottom: 2rem;
}

.error-content h1 {
    color: #1a202c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.error-message {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.error-search {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.error-search h3 {
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.search-input-group {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.search-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
}

.search-input-group button {
    background: #3182ce;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-links {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.error-links h3 {
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.error-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s;
}

.error-link:hover {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

.error-link i {
    color: #3182ce;
    font-size: 1.25rem;
}

.error-link:hover i {
    color: white;
}

.error-help {
    color: #718096;
}

.error-help a {
    color: #3182ce;
    text-decoration: none;
}

.error-help a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* State Hero Section */
.state-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.8) 0%, rgba(72, 187, 120, 0.8) 100%), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.state-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 4rem;
}

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

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

.state-quick-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

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

.quick-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Filters Section */
.filters-section {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 50;
}

.filters-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    font-size: 0.9rem;
    min-width: 120px;
}

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

.view-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    background: white;
    color: #718096;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

/* Popular Areas */
.popular-areas {
    padding: 3rem 0;
    background: #f7fafc;
}

.popular-areas h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
    font-size: 2rem;
}

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

.area-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.area-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #3182ce;
}

.area-icon {
    width: 50px;
    height: 50px;
    background: #3182ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.area-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.area-card p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

/* Featured Restaurants */
.featured-restaurants {
    padding: 3rem 0;
    background: white;
}

.featured-restaurants h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
    font-size: 2rem;
}

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

.featured-card {
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

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

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e53e3e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-content {
    padding: 1.5rem;
}

.featured-content h3 a {
    color: #1a202c;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}

.featured-content h3 a:hover {
    color: #3182ce;
}

.featured-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.featured-rating .stars {
    display: flex;
    gap: 0.25rem;
}

.featured-rating .stars i {
    color: #e2e8f0;
    font-size: 1rem;
}

.featured-rating .stars i.filled {
    color: #fbbf24;
}

.rating-text {
    font-size: 0.9rem;
    color: #4a5568;
}

.featured-cuisine {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

/* Restaurant Listings */
.restaurant-listings {
    padding: 3rem 0;
    background: #f7fafc;
}

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

.listings-header h2 {
    color: #1a202c;
    font-size: 1.75rem;
    margin: 0;
}

.results-count {
    color: #718096;
    font-size: 0.9rem;
}

/* State Info Section */
.state-info {
    padding: 4rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.info-content h2 {
    color: #1a202c;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.info-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-content h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem 0;
}

.info-content ul {
    color: #4a5568;
    line-height: 1.6;
    margin-left: 1.5rem;
}

.info-content li {
    margin-bottom: 0.5rem;
}

.stat-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-card h3 {
    color: #1a202c;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat-card .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-card .stat-item:last-child {
    border-bottom: none;
}

.stat-card .stat-label {
    color: #4a5568;
    font-size: 0.9rem;
}

.stat-card .stat-value {
    color: #3182ce;
    font-weight: 600;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3182ce;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
}

/* Search Hero Section */
.search-hero {
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.9) 0%, rgba(72, 187, 120, 0.9) 100%), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.search-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

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

.enhanced-search {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.search-input-container {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-icon {
    padding: 1rem 1.5rem;
    color: #718096;
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    outline: none;
    color: #2d3748;
}

.search-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #c53030;
}

.filter-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Search Insights */
.search-insights {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

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

.insight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
}

.insight-icon {
    width: 50px;
    height: 50px;
    background: #3182ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.insight-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.insight-content p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

/* Search Filters */
.search-filters {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 50;
}

.filters-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-section label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.filter-section select {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    font-size: 0.9rem;
    min-width: 140px;
}

.results-view {
    margin-left: auto;
}

.results-count {
    color: #718096;
    font-size: 0.9rem;
}

/* Search Page */
.search-page {
    padding: 2rem 0;
    background: #f7fafc;
}

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

.result-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.result-card .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.result-card .rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.result-card .rating-badge i {
    color: #fbbf24;
    margin-right: 0.25rem;
}

.result-card .card-content {
    padding: 1.5rem;
}

.result-card .card-content h3 {
    margin-bottom: 0.75rem;
}

.result-card .card-content h3 a {
    color: #1a202c;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.result-card .card-content h3 a:hover {
    color: #3182ce;
}

.result-card .location {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.result-card .location i {
    margin-right: 0.5rem;
}

.result-card .cuisine {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.result-card .description {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.result-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.result-card .reviews {
    color: #718096;
    font-size: 0.9rem;
}

.result-card .price {
    color: #38a169;
    font-weight: 600;
    font-size: 0.9rem;
}

.published-date {
    color: #718096;
    font-size: 0.8rem;
    font-style: italic;
}

/* Enhanced No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #718096;
    font-size: 2rem;
}

.no-results h2 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-results p {
    color: #718096;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.search-suggestions {
    margin: 2rem 0;
}

.search-suggestions h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.suggestion-tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.suggestion-tag {
    background: #f7fafc;
    color: #3182ce;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.suggestion-tag:hover {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

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

/* Related Searches */
.related-searches {
    padding: 3rem 0;
    background: white;
}

.related-searches h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
    font-size: 1.75rem;
}

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

.related-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.3s;
}

.related-item:hover {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

.related-item i {
    color: #3182ce;
    font-size: 1rem;
}

.related-item:hover i {
    color: white;
}

/* Trending Section */
.trending-section {
    padding: 3rem 0;
    background: #f7fafc;
}

.trending-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
    font-size: 1.75rem;
}

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

.trending-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.trending-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trending-icon {
    width: 60px;
    height: 60px;
    background: #e53e3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trending-content h3 {
    color: #1a202c;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.trending-content p {
    color: #718096;
    margin-bottom: 1rem;
}

.trending-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.trending-link:hover {
    color: #2c5282;
}

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

.page-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #3182ce;
    text-decoration: none;
    border: 2px solid #3182ce;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.page-btn:hover {
    background: #3182ce;
    color: white;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: #4a5568;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.page-number:hover {
    background: #f7fafc;
    border-color: #3182ce;
    color: #3182ce;
}

.page-number.active {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

.pagination-info {
    text-align: center;
    margin-bottom: 2rem;
}

.pagination-info p {
    color: #718096;
    font-size: 0.9rem;
}

/* Location Page */
.location-page {
    padding: 2rem 0;
    background: #f7fafc;
    min-height: 80vh;
}

.location-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location-header h1 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.location-results {
    margin-top: 2rem;
}

/* Admin Pages */
.admin-dashboard {
    padding: 2rem 0;
    background: #f7fafc;
    min-height: 80vh;
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-header h1 {
    color: #1a202c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.admin-subtitle {
    color: #718096;
    font-size: 1.2rem;
    margin: 0;
}

.admin-content {
    display: grid;
    gap: 2rem;
}

.admin-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-section h2 {
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.admin-stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.admin-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 0.5rem;
}

.admin-stat-label {
    color: #718096;
    font-weight: 500;
    font-size: 0.9rem;
}

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

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.admin-btn-primary {
    background: #3182ce;
    color: white;
}

.admin-btn-primary:hover {
    background: #2c5282;
    transform: translateY(-1px);
}

.admin-btn-outline {
    background: white;
    color: #3182ce;
    border: 2px solid #3182ce;
}

.admin-btn-outline:hover {
    background: #3182ce;
    color: white;
}

.admin-btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.admin-btn-secondary:hover {
    background: #cbd5e0;
}

.restaurant-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.restaurant-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s;
}

.restaurant-item:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.restaurant-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #3182ce;
}

.restaurant-info {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.restaurant-name {
    font-weight: 600;
    color: #1a202c;
}

.restaurant-location {
    color: #718096;
    font-size: 0.9rem;
}

.restaurant-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.restaurant-rating i {
    color: #fbbf24;
}

.restaurant-tier {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tier-1 {
    background: #dcfce7;
    color: #166534;
}

.tier-2 {
    background: #fef3c7;
    color: #92400e;
}

.tier-3 {
    background: #fee2e2;
    color: #991b1b;
}

.bulk-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.select-all-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #3182ce;
}

.bulk-actions label {
    font-weight: 500;
    color: #4a5568;
}

.selected-count {
    color: #3182ce;
    font-weight: 600;
    margin-left: auto;
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.form-row label {
    font-weight: 500;
    color: #4a5568;
    min-width: 120px;
}

.form-row input, .form-row select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
}

.admin-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.admin-alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.admin-alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.admin-alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .restaurant-info {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .bulk-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .selected-count {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-bar {
        margin-left: 0;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .states-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .nearby-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .states-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* State page responsive */
    .state-hero-content h1 {
        font-size: 2rem;
    }
    
    .state-quick-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .view-toggle {
        margin-left: 0;
        justify-content: center;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .listings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Search page responsive */
    .search-hero-content h1 {
        font-size: 2rem;
    }
    
    .filters-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .results-view {
        margin-left: 0;
        text-align: center;
    }
    
    .filter-tags {
        justify-content: center;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
    }
    
    .suggestion-tags {
        justify-content: center;
    }
    
    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }
}