.maincontent {
    width: 100%;
    position: relative;
    padding: 0;
    max-width: 100%;
    border: 0;
}

.siding-hero {
	padding: 100px 5% 80px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%), url('/imageserver/UserMedia/hammertime/ht-siding001.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
}

.breadcrumb-container {
    background: #f7f7f7;
    padding: 15px 5%;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav {
    font-size: 14px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

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

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item a svg {
    fill: #666;
    transition: fill 0.3s;
}

.breadcrumb-item a:hover svg {
    fill: var(--accent-color);
}

.breadcrumb-item.active span {
    color: var(--accent-color);
    font-weight: 600;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    margin: 0 8px;
}

.breadcrumb-separator svg {
    fill: #999;
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        font-size: 13px;
    }
    
    .breadcrumb-separator {
        margin: 0 5px;
    }
}

.service-column-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Location badge styling */
.location-badge-wrapper {
    margin-bottom: 20px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.location-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    max-width: 1300px;
    margin: 0 auto 30px;
}

.hero-buttons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.roofing-services-overview {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Maven Pro', sans-serif;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
}

.roofing-services-section {
    padding: 80px 5%;
}

.svc-two-column {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.service-feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
    transition: all 0.3s;
}

.service-feature-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-feature-item svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}


.service-area-section {
    padding: 70px 5%;
    background: var(--accent-color);
    text-align: center;
}

.service-area-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.service-area-intro {
    font-size: 18px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-list li {
    font-size: 17px;
    font-weight: 500;
    padding: 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-area-note {
    font-size: 16px;
    color: #ffffff;
}

.service-area-note a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
}

.weather-protection-section {
    padding: 70px 5%;
    background: linear-gradient(135deg, #222 0%, #333 100%);
}

.weather-content h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.weather-content>p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.weather-challenges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.weather-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.weather-item svg {
    width: 44px;
    height: 44px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.weather-item h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
}

.weather-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
}
.cta-section {
    padding: 80px 5%;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 42px;
}

.cta-section>p {
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-wrapper {
    margin-top: 40px;
}

.cta-button-wrapper .site_button {
    display: inline-block;
}



.cta-contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 35px 25px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 2px solid rgba(138, 138, 138, 0.2);
    transition: all .3s;
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.cta-option svg {
    width: 48px;
    height: 48px;
    fill: var(--accent-color);
}

.cta-option h4 {
    color: #555;
    font-size: 20px;
    margin: 0;
}

.cta-option a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.cta-option:hover a {
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .svc-two-column {
        grid-template-columns: 1fr;
    }

    .roofing-services-section .svc-column-left {
        order: 2;
    }
}

@media (max-width: 768px) {

    .service-features-grid,
    .weather-challenges,
    .service-areas-grid,
    .cta-contact-options {
        grid-template-columns: 1fr;
    }

    .hero-buttons-row {
        flex-direction: column;
        width: 100%;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .hero-contact-link {
        width: 100%;
        justify-content: center;
    }


    .cta-option {
        width: 100%;
        padding: 30px 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .location-services-title {
        font-size: 38px;
    }

    .location-contact-bar {
        flex-direction: column;
        gap: 15px;
    }

    .cta-option {
        width: 100%;
        justify-content: center;
    }

    .roof-svc-grid {
        gap: 30px;
    }

    .roof-svc-card-title {
        font-size: 28px;
    }

    .cta-option h3 {
        font-size: 28px;
    }

.cta-option a {
	font-size: 16px;
}

.cta-option span {
	font-size: 16px;
}


    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .location-selector-section {
        padding: 40px 5%;
    }

    .cta-option {
        padding: 25px 30px;
        min-width: auto;
    }

    .cta-option h4 {
        font-size: 18px;
    }

    .section-title,
    .location-services-title {
        font-size: 32px;
    }

    .roof-svc-img {
        height: 220px;
    }

    .roof-svc-card-body {
        padding: 25px 20px;
    }

    .cta-option {
        padding: 40px 25px;
    }

    .cta-option h3 {
        font-size: 24px;
    }

    .cta-option p {
        font-size: 16px;
    }

    .svc-banner h1 {
        font-size: 36px;
    }

    .svc-banner p {
        font-size: 16px;
    }

.cta-option a {
	font-size: 14px;
}


}