﻿/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    border-bottom: 3px solid #e53e3e;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: transparent;
}

h1:focus {
    outline: none;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    background: transparent;
}

.main-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    max-width: 300px;
    background: transparent !important;
    display: block;
}

/* Remove old logo styles */
.logo svg,
.logo-container,
.bull-logo,
.wordmark-logo {
    display: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.phone {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e53e3e;
    text-decoration: none;
}

.email {
    color: #666;
    text-decoration: none;
}

/* Navigation */
nav {
    background: #1a1a1a;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

    .nav-content a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        transition: background-color 0.3s;
    }

        .nav-content a:hover,
        .nav-content a.active {
            background: #e53e3e;
        }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-button {
    display: inline-block;
    background: #e53e3e;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

    .cta-button:hover {
        background: #c53030;
    }

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f8f9fa;
}

    .services h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-card h3 {
        color: #e53e3e;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        color: #666;
        margin-bottom: 1.5rem;
    }

.service-link {
    color: #e53e3e;
    text-decoration: none;
    font-weight: bold;
}

    .service-link:hover {
        text-decoration: underline;
    }

/* About Section */
.about {
    padding: 4rem 0;
}

    .about h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .about-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 2rem;
    }

.credentials {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

    .credentials h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
    }

/* Service Areas */
.service-areas {
    padding: 4rem 0;
    background: #f8f9fa;
}

    .service-areas h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .area-card h3 {
        color: #e53e3e;
        margin-bottom: 0.5rem;
    }

    .area-card p {
        color: #666;
        font-size: 0.9rem;
    }

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #e53e3e;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

    .footer-section a:hover {
        color: #e53e3e;
    }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .page-header .lead {
        font-size: 1.25rem;
        max-width: 800px;
        margin: 0 auto;
        opacity: 0.9;
    }

/* Services Page Styles */
.services-overview {
    padding: 2rem 0 4rem;
}

.service-card.featured {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid #e53e3e;
}

    .service-card.featured:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .service-card.featured h2 {
        color: #e53e3e;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .service-card.featured ul {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
    }

    .service-card.featured li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 1.5rem;
    }

        .service-card.featured li:before {
            content: "✓";
            color: #e53e3e;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .service-card.featured li:last-child {
            border-bottom: none;
        }

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background: #f8f9fa;
}

    .why-choose-us h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .feature h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

/* Service Areas Summary */
.service-areas-summary {
    padding: 4rem 0;
}

    .service-areas-summary h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
    }

    .service-areas-summary p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: #666;
    }

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

    .areas-list .area {
        background: #e53e3e;
        color: #fff;
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        font-weight: 500;
    }

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #e53e3e;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

    .cta-button.primary:hover {
        background: #c53030;
    }

.cta-button.secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #fff;
    transition: all 0.3s;
}

    .cta-button.secondary:hover {
        background: #fff;
        color: #1a1a1a;
    }

/* About Page Styles */
.about-story {
    padding: 2rem 0 4rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .story-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
    }

    .story-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 2rem;
        line-height: 1.8;
    }

.owner-profile {
    padding: 4rem 0;
    background: #f8f9fa;
}

.profile-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.profile-info {
    max-width: 800px;
    margin: 0 auto;
}

.profile-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.credentials-highlight {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #e53e3e;
    margin-top: 2rem;
}

    .credentials-highlight h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
    }

    .credentials-highlight ul {
        list-style: none;
        padding: 0;
    }

    .credentials-highlight li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

        .credentials-highlight li:last-child {
            border-bottom: none;
        }

.our-approach {
    padding: 4rem 0;
}

    .our-approach h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

    .approach-item h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
    }

.specialization {
    padding: 4rem 0;
    background: #f8f9fa;
}

    .specialization h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
    }

    .specialization > p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 3rem;
        color: #666;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.specialization-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .benefit h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
    }

.community-commitment {
    padding: 4rem 0;
}

    .community-commitment h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
    }

    .community-commitment > p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 3rem;
        color: #666;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.community-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value {
    text-align: center;
    padding: 2rem;
}

    .value h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
    }

/* Service Areas Page Styles */
.service-areas-map {
    padding: 2rem 0 4rem;
}

.areas-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

    .areas-intro h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
    }

    .areas-intro p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.8;
    }

.primary-areas h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #e53e3e;
}

.areas-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.area-card.primary {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #e53e3e;
}

    .area-card.primary h4 {
        color: #e53e3e;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .area-card.primary p strong {
        color: #1a1a1a;
        display: block;
        margin-bottom: 1rem;
    }

    .area-card.primary ul {
        list-style: none;
        padding: 0;
        margin-top: 1rem;
    }

    .area-card.primary li {
        padding: 0.3rem 0;
        color: #666;
        position: relative;
        padding-left: 1.5rem;
    }

        .area-card.primary li:before {
            content: "•";
            color: #e53e3e;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

.secondary-areas {
    padding: 4rem 0;
    background: #f8f9fa;
}

    .secondary-areas h3 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
    }

.terrain-expertise {
    padding: 4rem 0;
}

    .terrain-expertise h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
    }

    .terrain-expertise > p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 3rem;
        color: #666;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.terrain-challenges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.challenge {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

    .challenge h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

.service-commitment {
    padding: 4rem 0;
    background: #f8f9fa;
}

    .service-commitment h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.commitment {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

    .commitment h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
    }

.coverage-map {
    padding: 4rem 0;
}

    .coverage-map h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
    }

    .coverage-map > p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 3rem;
        color: #666;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.coverage-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coverage-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

    .coverage-item h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
    }

/* Contact Page Styles */
.contact-main {
    padding: 2rem 0 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #e53e3e;
}

    .contact-method h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

.phone-large {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e53e3e;
    text-decoration: none;
}

    .phone-large:hover {
        text-decoration: underline;
    }

.email-large {
    font-size: 1.2rem;
    color: #e53e3e;
    text-decoration: none;
}

    .email-large:hover {
        text-decoration: underline;
    }

/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
        text-align: center;
    }

.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 5px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e53e3e;
        }

.submit-button {
    background: #e53e3e;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .submit-button:hover {
        background: #c53030;
    }

.form-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

/* Service Process */
.service-process {
    padding: 4rem 0;
    background: #f8f9fa;
}

    .service-process h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    background: #e53e3e;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Why Call Us */
.why-call-us {
    padding: 4rem 0;
}

    .why-call-us h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

    .reason h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

/* Emergency Services */
.emergency-services {
    padding: 4rem 0;
    background: #f8f9fa;
    border-top: 3px solid #e53e3e;
}

    .emergency-services h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
    }

    .emergency-services > p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 3rem;
        color: #666;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.emergency-contact {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 3px solid #e53e3e;
}

    .emergency-contact h3 {
        color: #e53e3e;
        margin-bottom: 1rem;
    }

.emergency-phone {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e53e3e;
    text-decoration: none;
}

    .emergency-phone:hover {
        text-decoration: underline;
    }

.emergency-services-list {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
}

    .emergency-services-list h3 {
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .emergency-services-list ul {
        list-style: none;
        padding: 0;
    }

    .emergency-services-list li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 1.5rem;
    }

        .emergency-services-list li:before {
            content: "🚨";
            position: absolute;
            left: 0;
        }

        .emergency-services-list li:last-child {
            border-bottom: none;
        }

/* Blazor Error UI */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Page Layout */
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info {
        align-items: center;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services h2,
    .about h2,
    .service-areas h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Logo responsive */
    .main-logo {
        height: 40px;
        max-width: 250px;
    }

    /* Page headers responsive */
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .lead {
        font-size: 1rem;
    }

    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Service areas responsive */
    .areas-grid-large {
        grid-template-columns: 1fr;
    }

    /* CTA buttons responsive */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Process steps responsive */
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Grid layouts responsive */
    .features-grid,
    .approach-grid,
    .specialization-benefits,
    .community-values,
    .terrain-challenges,
    .commitment-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Logo extra small screens */
    .main-logo {
        height: 35px;
        max-width: 200px;
    }

    .header-content {
        gap: 1rem;
    }

    /* Page headers extra small */
    .page-header {
        padding: 2rem 0;
    }

    /* Contact form extra small */
    .contact-form {
        padding: 1.5rem;
    }

    /* Service cards extra small */
    .service-card.featured {
        padding: 1.5rem;
    }

    /* Areas list extra small */
    .areas-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 360px) {
    /* Logo very small screens */
    .main-logo {
        height: 30px;
        max-width: 180px;
    }
}
