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


/* -- Location Selector Section -- */
.location-selector-section {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.location-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.location-tab {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 35px 50px;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.location-tab:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(235, 115, 35, 0.2);
}

.location-tab.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d96520 100%);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 8px 24px rgba(235, 115, 35, 0.3);
}

.location-icon {
    width: 48px;
    height: 48px;
    fill: var(--accent-color);
    transition: all 0.3s;
}

.location-tab.active .location-icon {
    fill: white;
}

.location-name {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Maven Pro', 'Poppins', sans-serif;
}

.location-province {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
}

/* -- Location Services Section -- */
.location-services-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.location-services-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    border-radius: 12px;
}

.location-services-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 15px;
}

.location-services-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 35px;
}

/* -- Location Contact Bar -- */
.location-contact-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.location-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
}

.location-contact-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 115, 35, 0.15);
}

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

.location-contact-item a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

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

.location-contact-item span {
    color: #222;
    font-weight: 600;
    font-size: 18px;
}

/* -- Service Cards Grid -- */
.roof-svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.roof-svc-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent-color);
}

.roof-svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.roof-svc-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.roof-svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.roof-svc-card:hover .roof-svc-img img {
    transform: scale(1.1);
}

.svc-card-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.svc-card-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;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.roof-svc-card-body {
    padding: 35px 30px;
}

.roof-svc-card-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 20px;
    font-family: 'Maven Pro', 'Poppins', sans-serif;
}

.roof-svc-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

/* -- Service Features List -- */
.svc-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.svc-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    font-weight: 500;
}

.svc-features-list li svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

/* -- Location CTA Section -- */
.location-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    border-radius: 12px;
    margin-top: 60px;
display: none;
}

.location-cta h3 {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.location-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* -- Why Choose Us Section -- */
.why-choose-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f7f7f7 0%, #e8e8e8 100%);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(235, 115, 35, 0.2);
}

.benefit-card svg {
    width: 56px;
    height: 56px;
    fill: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* -- Service Banner Updates -- */
.svc-banner {
	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/hero-banner002.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
}

.svc-banner h1 {
    color: white;
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.svc-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 35px;
}

/* -- Responsive Design -- */
@media (max-width: 1200px) {
    .roof-svc-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .location-tabs {
        flex-direction: column;
        gap: 20px;
    }

    .location-tab {
        width: 100%;
        padding: 30px 40px;
    }

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

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

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

    .location-contact-item {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .why-choose-section h2 {
        font-size: 38px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

.location-contact-item a {
	font-size: 16px;
}

.location-contact-item span {
	font-size: 16px;
}
}

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

    .location-tab {
        padding: 25px 30px;
        min-width: auto;
    }

    .location-name {
        font-size: 24px;
    }

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

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

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

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

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

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

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

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

.location-contact-item a {
	font-size: 14px;
}


}