/* Location Page Styles */
.location-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.hero-section {
    background: #7e7a77; 
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



/* Statistics Bar */
.stats-bar {
    background: #f8f9fa;
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2.5em;
    color: #f57e0f;
    font-weight: 700;
}

.stat-item span {
    color: #666;
    font-size: 0.9em;
}

/* Content Sections */
.about-local, .services-section, .process-section, .nearby-cities {
    padding: 80px 0;
}

.about-local {
    background: white;
}

.about-local h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.about-local p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.local-benefits {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.local-benefits h3 {
    color: #667eea;
    margin-bottom: 20px;
}

.local-benefits ul {
    list-style: none;
    padding: 0;
}

.local-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.local-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}


.contact-sidebar h3 {
    margin-bottom: 15px;
}

.contact-sidebar .btn-block {
    width: 100%;
    margin: 20px 0;
}

.contact-info p {
    margin: 10px 0;
    font-size: 0.9em;
}

/* Services Grid */
.services-section {
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
  
    margin: 0 auto 20px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
}

.service-item h3 {
    color: #333;
    margin-bottom: 15px;
}

/* Process Section */
.process-section {
    background: white;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f57e0f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Nearby Cities */
.nearby-cities {
    background: #f8f9fa;
}

.nearby-cities h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.nearby-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nearby-item a {
    text-decoration: none;
    color: #667eea;
    font-weight: 600;
}

.nearby-item a:hover {
    color: #5a67d8;
}

/* Contact Section */
.contact-section {
    background: #333;
    color: white;
    padding: 80px 0;
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.info-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.info-item:last-child {
    border-bottom: none;
}

/* Archive Page */
.locations-archive {
    padding: 80px 0;
}

.archive-header {
    text-align: center;
    margin-bottom: 50px;
}

.archive-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #333;
}

.locations-filter {
    margin-bottom: 50px;
    text-align: center;
}

.search-box {
    margin-bottom: 20px;
}

.search-box input {
    width: 300px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #667eea;
    color: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.location-header h3 {
    margin: 0;
    font-size: 1.3em;
}

.location-header h3 a {
    text-decoration: none;
    color: #333;
}

.location-header h3 a:hover {
    color: #667eea;
}

.state-badge {
    background: #667eea;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
}

.location-content {
    padding: 0 20px;
}

.population {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.landmarks {
    color: #888;
    font-size: 0.85em;
    margin-bottom: 15px;
}

.location-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5em;
    }
    
    .hero-section .lead {
        font-size: 1.1em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-form .row {
        grid-template-columns: 1fr;
    }
    
    .search-box input {
        width: 100%;
        max-width: 300px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2em;
    }
    
    .about-local, .services-section, .process-section, .nearby-cities, .contact-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}