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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo span {
    color: #666;
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.nav-cta .cta-button {
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.nav-cta .cta-button:hover {
    background: #e55a2b;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 1.5rem;
    color: #a8c8f0;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.cta-button.primary {
    background: #ff6b35;
    color: white;
}

.cta-button.primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #2c5aa0;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    text-align: center;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

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

.service-card {
    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-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background: white;
}

.locations h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.locations > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.location-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: #2c5aa0;
    transform: translateY(-3px);
}

.location-card h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.location-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-button {
    background: #2c5aa0;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
}

.location-button:hover {
    background: #1e3f73;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #2c5aa0;
    color: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature p {
    color: #a8c8f0;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.contact-section > .container > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item strong {
    color: #2c5aa0;
}

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

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

.cta-center {
    margin-top: 30px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-placeholder {
        width: 300px;
        height: 200px;
    }
    
    .services-grid,
    .locations-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .services,
    .locations,
    .why-choose-us,
    .contact-section {
        padding: 60px 0;
    }
    
    .services h2,
    .locations h2,
    .why-choose-us h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}


/* Additional styles for location pages */
.location-content {
    padding: 80px 0;
    background: white;
}

.location-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

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

.content-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.content-section h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.content-section p {
    color: #666;
    line-height: 1.7;
}

/* Neighborhoods Section */
.neighborhoods {
    padding: 80px 0;
    background: #f8f9fa;
}

.neighborhoods h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

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

.neighborhood-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #2c5aa0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.neighborhood-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Borough Links Section */
.borough-links {
    padding: 80px 0;
    background: white;
}

.borough-links h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

/* Responsive adjustments for location pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .neighborhoods-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .neighborhood-item {
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .location-content,
    .neighborhoods,
    .borough-links {
        padding: 60px 0;
    }
    
    .location-content h2,
    .neighborhoods h2,
    .borough-links h2 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .neighborhoods-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}


/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.stat-item:hover {
    border-color: #2c5aa0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 10px;
}

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

.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

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

.value-card {
    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;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

.team-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.team-text h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.team-text h3:first-child {
    margin-top: 0;
}

.team-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-certifications {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.team-certifications h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
}

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

.contact-method {
    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;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-method h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-method p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-method a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
}

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

.contact-method span {
    color: #666;
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.contact-form-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    background: #ff6b35;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #e55a2b;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
}

.service-areas {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.service-areas > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.area-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h3 {
    margin-bottom: 15px;
}

.area-card h3 a {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 1.4rem;
}

.area-card h3 a:hover {
    text-decoration: underline;
}

.area-card p {
    color: #666;
    line-height: 1.6;
}

.emergency-contact {
    padding: 80px 0;
    background: #2c5aa0;
    color: white;
}

.emergency-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.emergency-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.emergency-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #a8c8f0;
}

.emergency-list {
    list-style: none;
    padding: 0;
}

.emergency-list li {
    color: #a8c8f0;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.emergency-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.emergency-cta {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 10px;
}

.emergency-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.emergency-button {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.emergency-button:hover {
    background: #e55a2b;
}

.emergency-cta p {
    color: #a8c8f0;
    font-size: 0.9rem;
}

/* Responsive Design for About and Contact Pages */
@media (max-width: 768px) {
    .story-grid,
    .team-content,
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .values-grid,
    .contact-methods,
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-content,
    .values-section,
    .team-section,
    .contact-info-section,
    .contact-form-section,
    .service-areas,
    .emergency-contact {
        padding: 60px 0;
    }
    
    .about-content h2,
    .values-section h2,
    .team-section h2,
    .contact-info-section h2,
    .contact-form-section h2,
    .service-areas h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .emergency-text h2 {
        font-size: 2rem;
    }
}

