/* ========================================
   LOCATION PAGES STYLES
   ======================================== */

/* Hero Section */
.location-hero {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.location-hero h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-hero .lead {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 30px;
}

.location-hero .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.location-hero .cta-buttons .btn {
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
}

.location-hero .cta-buttons .btn-primary {
    background-color: #2c5aa0;
    color: white;
    border: 2px solid #2c5aa0;
}

.location-hero .cta-buttons .btn-primary:hover {
    background-color: #1a4480;
    border-color: #1a4480;
    text-decoration: none;
}

.location-hero .cta-buttons .btn-secondary {
    background-color: white;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.location-hero .cta-buttons .btn-secondary:hover {
    background-color: #2c5aa0;
    color: white;
    text-decoration: none;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 90px 0px;
    background-color: white;
}

.why-choose-us .section-header::before {
  content: '';
  position: absolute;
  width: 50px;
  top: -53px;
  height: 50px;
  z-index: -1;
  display: block;
  transition: all 0.5s ease-in-out 0s;
  background-image: url(../images/icons/project-section.svg);
  background-size: contain;
  opacity: 9;
  background-repeat: no-repeat;
}

.why-choose-us h2 {
  font-size: 2rem;
  position: relative;
  color: var(--color-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.benefit i {
    font-size: 3em;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.services-list li {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.services-list strong {
    color: #56a0d7;
    font-size: 1.1em;
}

/* Neighborhoods Section */
.neighborhoods-section {
    padding: 60px 20px;
    background-color: white;
}

.neighborhoods-section h2 {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.neighborhoods-section p {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.neighborhoods-section .neighborhoods-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 0;
}

.neighborhoods-section .neighborhoods-list li {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    color: #56a0d7;
    margin-bottom: 5px;
    display: flex;
    gap: 10px;
}

.neighborhoods-section .neighborhoods-list li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    font-size: 1.2em;
}

/* Common Issues Section */
.common-issues {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.common-issues h2 {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.common-issues p {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.common-issues ul {
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.common-issues ul li {
    background: white;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #56a0d7;
}

.common-issues ul li strong {
    color: #ff6b35;
    font-size: 1.05em;
}

/* Final CTA Section */
.final-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2c5aa0, #1a4480);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
    color: #e5ffab;
}

.contact-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-box h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.contact-box p {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.contact-box a {
    color: white;
    text-decoration: underline;
}

.contact-box a:hover {
    opacity: 0.8;
}
.contact-box .text-white {
    color: white;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .cta-buttons .btn {
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
}

.final-cta .cta-buttons .btn-primary {
    background-color: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
}

.final-cta .cta-buttons .btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    text-decoration: none;
}

.final-cta .cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.final-cta .cta-buttons .btn-secondary:hover {
    background-color: white;
    color: #2c5aa0;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 2em;
    }
    
    .location-hero .lead {
        font-size: 1.05em;
    }
    
    .why-choose-us h2,
    .services-section h2,
    .neighborhoods-section h2,
    .common-issues h2,
    .final-cta h2 {
        font-size: 1.8em;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neighborhoods-section .neighborhoods-list {
        grid-template-columns: 1fr;
    }
    
    .location-hero .cta-buttons,
    .final-cta .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .location-hero .cta-buttons .btn,
    .final-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .location-hero {
        padding: 40px 15px;
    }
    
    .location-hero h1 {
        font-size: 1.7em;
    }
    
    .why-choose-us,
    .services-section,
    .neighborhoods-section,
    .common-issues,
    .final-cta {
        padding: 40px 15px;
    }
}