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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: transparent; /* Changed to transparent */
    color: #000; /* Changed to black */
    border-bottom: none; /* Removed border */
    box-shadow: none; /* Removed shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 0.5rem 0; /* Further reduced padding */
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    filter: brightness(1.2);
    transition: filter 0.2s ease;
}

.logo:hover img {
    filter: brightness(1.4);
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000; /* Changed to black */
    text-decoration: none;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-rent {
    color: #000; /* Black */
}

.logo-a {
    color: #228B22; /* Forest green */
}

.logo-dumpster {
    color: #000; /* Black */
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #000; /* Changed to black */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    background: rgba(0,0,0,0.05); /* Changed to black */
    color: #000; /* Changed to black */
    transform: translateY(-1px);
}

.nav-link:active {
    transform: translateY(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000; /* Changed to black */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #000; /* Changed to black */
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(0,0,0,0.1); /* Changed to black */
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

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

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #333;
}

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

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #14532d 0%, #2b7542 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-bar {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    gap: 0;
    z-index: 1000;
}

.search-bar input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.search-bar button {
    padding: 1rem 2rem;
    border: none;
    background: #fff;
    color: #14532d;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all 0.2s;
    font-size: 1rem;
    white-space: nowrap;
}

.search-bar button:hover {
    background: #f8f9ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 99999;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    margin-top: 1px;
}

.suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.suggestion:hover {
    background: #f8f9fa;
}

.suggestion:last-child {
    border-bottom: none;
}

.suggestion-icon {
    font-size: 1.2em;
    margin-right: 12px;
}

.suggestion[data-type="city"] {
    border-left: 3px solid #2563eb;
}

.suggestion[data-type="featured_business"] {
    border-left: 3px solid #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.suggestion[data-type="featured_business"] .suggestion-icon {
    color: #dc2626;
}

.suggestion[data-type="business"] {
    border-left: 3px solid #10b981;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-text {
    font-weight: 500;
    color: #333;
}

.suggestion-meta {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.suggestion-type {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-suggestion {
    justify-content: space-between;
}

.business-suggestion .suggestion-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Search Popup Styles */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.popup-content h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.popup-content p {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.popup-content ul {
    text-align: left;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.popup-content li {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.popup-close-btn {
    background: #14532d;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.popup-close-btn:hover {
    background: #166534;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

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

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.feature-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(43, 117, 66, 0.1), rgba(22, 163, 74, 0.1));
    border: 1px solid rgba(43, 117, 66, 0.2);
    transition: all 0.3s ease;
}

.feature-link:hover {
    background: linear-gradient(135deg, rgba(43, 117, 66, 0.2), rgba(22, 163, 74, 0.2));
    border-color: rgba(43, 117, 66, 0.4);
    transform: translateY(-1px);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 1px solid;
    transition: all 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #14532d 0%, #2b7542 100%);
    color: #fff;
    border-color: #14532d;
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #166534 0%, #16a34a 100%);
    border-color: #166534;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 83, 45, 0.35);
}

.btn-secondary {
    background: #fff;
    color: #14532d;
    border-color: #14532d;
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #f0fdf4;
    border-color: #166534;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #dee2e6;
}

.btn-outline:hover {
    background: #f8f9fa;
}

.btn-primary.large, .btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

/* Business Cards */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.business-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b7542, #14532d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.business-card:hover::before {
    opacity: 1;
}

.business-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.business-card.featured {
    border-color: #2b7542;
    box-shadow: 0 4px 15px rgba(43, 117, 66, 0.15);
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.business-card.featured::before {
    opacity: 1;
}

.featured-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 0.75rem;
}

.featured-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-cta-featured {
    background: linear-gradient(135deg, #2b7542 0%, #16a34a 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(43, 117, 66, 0.25);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta-featured:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
    text-decoration: none;
    color: white;
}

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

.business-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}



.featured-badge {
    background: linear-gradient(135deg, #14532d 0%, #2b7542 100%);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(20, 83, 45, 0.3);
}

.featured-badge.large {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Featured Offer Section */
.featured-offer {
    background: linear-gradient(135deg, #2b7542 0%, #16a34a 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    color: white;
    box-shadow: 0 4px 16px rgba(43, 117, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-content {
    position: relative;
    z-index: 1;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    backdrop-filter: blur(10px);
}

.featured-offer h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: white;
}

.featured-offer p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.4;
}

.offer-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.duration {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-featured {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-featured:hover {
    background: rgba(0,0,0,0.05);
    color: #000;
    transform: translateY(-1px);
}

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

.btn-featured::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-featured:hover::after {
    width: 80%;
}

.btn-featured-large {
    background: linear-gradient(135deg, #2b7542 0%, #16a34a 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(43, 117, 66, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin: 1.5rem 0;
}

.btn-featured-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 117, 66, 0.6);
    background: linear-gradient(135deg, #16a34a 0%, #2b7542 100%);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Pricing Section Enhancements */
.pricing-section {
    margin: 2rem 0;
}

.pricing-card {
    background: linear-gradient(145deg, #fff 0%, #f0fdf4 100%);
    border: 2px solid #2b7542;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(43, 117, 66, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '✅ LIMITED TIME';
    position: absolute;
    top: -8px;
    right: 16px;
    background: linear-gradient(135deg, #2b7542 0%, #16a34a 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(43, 117, 66, 0.1), rgba(22, 163, 74, 0.1));
    border-radius: 12px;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2b7542 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 1px 1px 2px rgba(43, 117, 66, 0.3);
}

.duration {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-offer {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .featured-offer h3 {
        font-size: 1.4rem;
    }

    .featured-offer p {
        font-size: 1rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .btn-featured {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .btn-featured-large {
        padding: 1.5rem 2.5rem;
        font-size: 1.2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card::before {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-count {
    color: #666;
    font-size: 0.85rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: #000;
    text-decoration: none;
}

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

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

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

.city-card {
    background: linear-gradient(145deg, #f8faff 0%, #f1f5f9 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #14532d 0%, #2b7542 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.city-card:hover {
    background: linear-gradient(145deg, #fff 0%, #f0fdf4 100%);
    border-color: #14532d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 83, 45, 0.1);
}

.city-card:hover::before {
    transform: scaleX(1);
}

.city-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.city-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Sections */
.featured-section, .cities-section {
    padding: 4rem 0;
    background: #f0fdf4;
}

.featured-section:nth-child(even) {
    background: #fff;
}

.featured-section h2, .cities-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* City Page Styles */
.city-header {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.city-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.filters {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.filters h3 {
    margin-bottom: 1rem;
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.filter-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

.map-container h4 {
    margin-bottom: 1rem;
}

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

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

.sort-options select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Business List */
.business-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.business-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.business-content {
    flex: 1;
}

.business-item .business-header h3 a {
    color: #000;
    text-decoration: none;
    font-size: 1.3rem;
}

.business-item .business-header h3 a:hover {
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-item .icon {
    font-size: 1rem;
    width: 20px;
}

.contact-item a {
    color: #000;
    text-decoration: none;
}

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

.hours-info {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status.open {
    background: #d4edda;
    color: #155724;
}

.status.closed {
    background: #f8d7da;
    color: #721c24;
}

.hours-toggle {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
}

.hours-details {
    margin-top: 0.5rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.day {
    font-weight: 500;
    width: 100px;
}

.business-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 150px;
}

/* Business Detail Page - Mobile First Design */
.business-hero {
    background: linear-gradient(135deg, #f8faff 0%, #f0fdf4 100%);
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.business-title-section {
    text-align: center;
}

.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.title-wrapper h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #14532d;
    margin: 0;
    line-height: 1.2;
}

.business-category {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.business-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.business-rating .stars {
    color: #ffc107;
    font-size: 1.3rem;
}

.business-rating .rating-text {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.business-rating .review-count {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile-First Content Layout */
.business-content-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
    max-width: 100%;
}

/* Quick Actions Card */
.quick-actions-card {
    background: #fff;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
    position: sticky;
    top: 1rem;
    z-index: 10;
}

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

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 80px;
    text-align: center;
}

.action-btn.primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 3px 12px rgba(34, 197, 94, 0.3);
}

.action-btn.primary:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(34, 197, 94, 0.4);
    color: white;
}

.action-btn.secondary {
    background: #fff;
    color: #14532d;
    border: 2px solid #14532d;
}

.action-btn.secondary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    color: #14532d;
}

.action-btn.outline {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #dee2e6;
}

.action-btn.outline:hover {
    background: #e9ecef;
    color: #495057;
}

.btn-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    display: block;
}

.btn-text {
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Info Cards */
.info-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

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

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

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

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.open {
    background: #d4fdd7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-badge.closed {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8faff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

.contact-value.phone-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: #16a34a;
    text-decoration: none;
}

.contact-value.phone-link:hover {
    color: #15803d;
    text-decoration: underline;
}

.contact-value.website-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.contact-value.website-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.address-details {
    line-height: 1.5;
}

.address-street {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.address-city-state {
    color: #666;
    margin-bottom: 0.75rem;
}

.maps-link {
    color: #16a34a;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background: #f0fdf4;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #bbf7d0;
    transition: all 0.2s ease;
}

.maps-link:hover {
    background: #dcfce7;
    color: #15803d;
    transform: translateY(-1px);
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8faff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.hour-item .day {
    font-weight: 600;
    color: #333;
    min-width: 100px;
}

.hour-item .time {
    color: #666;
    text-align: right;
}

/* Service Area Card */
.service-area-card .service-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .business-hero {
        padding: 3rem 0;
    }

    .business-content-mobile {
        padding: 2rem 0;
        gap: 2rem;
    }

    .actions-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }

    .action-btn {
        min-height: 100px;
        padding: 1.25rem;
    }

    .btn-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .btn-text {
        font-size: 1rem;
    }

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

    .info-card {
        padding: 2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .business-content-mobile {
        max-width: 800px;
        margin: 0 auto;
    }

    .quick-actions-card {
        position: relative;
        top: auto;
    }
}

/* Upload Page */
.upload-page {
    padding: 2rem 0;
}

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

.upload-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.upload-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.file-input-wrapper {
    position: relative;
}

.file-input-label {
    display: block;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.file-input-label:hover, .file-input-label.drag-over {
    border-color: #000;
    background: #f8f9fa;
}

.file-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.file-input-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-icon {
    font-size: 2rem;
}

.file-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.file-subtext {
    color: #666;
}

.selected-file {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.file-name {
    font-weight: 500;
}

.remove-file {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-file:hover {
    color: #333;
}

.upload-result {
    margin-top: 1rem;
}

.result-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 4px;
}

.result-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.result-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.result-icon {
    font-size: 1.2rem;
}

.upload-info h2, .upload-info h3 {
    margin-bottom: 1rem;
}

.upload-info h2 {
    font-size: 1.5rem;
}

.code-example {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin: 1rem 0;
}

.code-example pre {
    padding: 1rem;
    overflow-x: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.field-descriptions ul, .upload-tips ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.field-descriptions li, .upload-tips li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: #333;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

/* Map Popup */
.map-popup {
    text-align: left;
}

.map-popup h4 {
    margin-bottom: 0.5rem;
}

.map-popup p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.map-popup a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.map-popup a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .stat-number {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .search-bar {
        flex-direction: column;
        gap: 0.5rem;
    }

    .search-bar input, .search-bar button {
        border-radius: 6px;
        padding: 0.875rem 1rem;
    }

    .nav {
        padding: 1rem 0;
    }

    .nav .container {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
        border-radius: 0;
        text-transform: none;
        letter-spacing: normal;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background: rgba(0,0,0,0.05);
        transform: none;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filters {
        order: 2;
        margin-top: 1rem;
    }

    .listings {
        order: 1;
    }

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

    #map {
        height: 200px !important;
        min-height: 200px;
    }

    .business-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .business-actions {
        flex-direction: row;
        min-width: auto;
        align-self: stretch;
        gap: 0.5rem;
    }

    .business-actions .btn-primary,
    .business-actions .btn-secondary {
        flex: 1;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .featured-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-cta-featured {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .business-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .business-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .upload-content {
        grid-template-columns: 1fr;
    }

    .upload-info {
        order: -1;
    }

    .action-buttons {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .business-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .business-title h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .stat {
        min-width: auto;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .city-header {
        padding: 1.5rem 0;
    }

    .city-header h1 {
        font-size: 2rem;
    }

    .business-title h1 {
        font-size: 1.8rem;
    }

    .upload-header h1 {
        font-size: 2rem;
    }

    .file-input-label {
        padding: 2rem 1rem;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.back-to-top:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Header scroll effect */
.header {
    transition: transform 0.3s ease;
}