/* K L Contractor Plumbing Inc - Professional Stylesheet */

/* 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-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3a6f;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* 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;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */
.nav-desktop {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin: 0 1rem;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #2c5aa0;
    color: #fff;
}

.nav-menu .fas {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 0;
    color: #333;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #2c5aa0;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone {
    display: flex;
    align-items: center;
    color: #2c5aa0;
    font-weight: 600;
    gap: 0.5rem;
}

.cta-button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

.nav-mobile.active {
    display: block;
}

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

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: #f8f9fa;
    color: #2c5aa0;
}

.mobile-dropdown-menu {
    display: none;
    background: #f8f9fa;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    margin-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.hero-images {
    position: relative;
    height: 500px;
}

.hero-image-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-1 {
    width: 250px;
    height: 200px;
    top: 0;
    left: 0;
    z-index: 3;
}

.hero-img-2 {
    width: 220px;
    height: 180px;
    top: 120px;
    right: 50px;
    z-index: 2;
}

.hero-img-3 {
    width: 200px;
    height: 160px;
    bottom: 0;
    left: 100px;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #666;
}

.feature i {
    font-size: 1.2rem;
    color: #ff6b35;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: #fff;
}

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

.trust-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trust-icon i {
    font-size: 2rem;
    color: #fff;
}

.trust-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* Image Showcase */
.image-showcase {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6f 100%);
    color: #fff;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.showcase-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.image-gallery {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-row:last-child {
    margin-bottom: 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content h2 {
    color: #2c5aa0;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-choose-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.cta-section {
    text-align: left;
}

.why-choose-images {
    position: relative;
    height: 500px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-img {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.stack-img:hover {
    transform: scale(1.05);
}

.stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-img-1 {
    width: 280px;
    height: 220px;
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.stack-img-2 {
    width: 260px;
    height: 200px;
    top: 150px;
    right: 0;
    z-index: 2;
    transform: rotate(8deg);
}

.stack-img-3 {
    width: 240px;
    height: 180px;
    bottom: 0;
    left: 80px;
    z-index: 1;
    transform: rotate(-3deg);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    background: #fff;
}

.content-article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-article h2 {
    color: #2c5aa0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-article h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-article ul li,
.content-article ol li {
    margin-bottom: 0.5rem;
}

.content-article strong {
    color: #2c5aa0;
}

/* Resource Iframes */
.resource-iframes {
    padding: 3rem 0;
    background: #f8f9fa;
}

.iframe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.iframe-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.iframe-container h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    text-align: center;
}

.iframe-container iframe {
    border-radius: 5px;
}

/* Additional Resources */
.additional-resources {
    padding: 4rem 0;
    background: #fff;
}

.additional-resources h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.resource-dropdown {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.resource-toggle {
    width: 100%;
    padding: 1.5rem;
    background: #2c5aa0;
    color: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.resource-toggle:hover {
    background: #1e3a6f;
}

.resource-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.resource-content.active {
    padding: 1.5rem;
    max-height: 500px;
}

.resource-content ul {
    margin: 1rem 0;
}

.btn-social, .btn-pricing, .btn-map {
    display: inline-block;
    background: #2c5aa0;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-social:hover, .btn-pricing:hover, .btn-map:hover {
    background: #1e3a6f;
    transform: translateY(-2px);
    color: #fff;
}

.service-areas {
    margin: 1rem 0;
}

.area-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.area-list li {
    list-style: none;
    padding: 0.25rem 0;
    color: #666;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    color: #fff;
    font-size: 1.2rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #ff6b35;
    margin-top: 0.2rem;
    width: 20px;
}

.services-list h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.services-list ul {
    list-style: none;
    margin-left: 0;
}

.services-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.footer-map iframe {
    border-radius: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-contact .phone {
        display: none;
    }
    
    .header-contact .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-images {
        height: 350px;
        order: -1;
    }
    
    .hero-img-1 {
        width: 200px;
        height: 160px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-img-2 {
        width: 180px;
        height: 140px;
        top: 80px;
        right: 20px;
    }
    
    .hero-img-3 {
        width: 160px;
        height: 120px;
        bottom: 20px;
        left: 20px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.5rem 1rem;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .trust-icon i {
        font-size: 1.5rem;
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-header h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-content {
        order: 2;
    }
    
    .why-choose-images {
        height: 350px;
        order: 1;
    }
    
    .stack-img-1 {
        width: 200px;
        height: 160px;
        left: 50%;
        transform: translateX(-50%) rotate(-5deg);
    }
    
    .stack-img-2 {
        width: 180px;
        height: 140px;
        top: 120px;
        right: 20px;
        transform: rotate(8deg);
    }
    
    .stack-img-3 {
        width: 160px;
        height: 120px;
        bottom: 20px;
        left: 30px;
        transform: rotate(-3deg);
    }
    
    .why-choose-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .why-choose-content > p {
        text-align: center;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .iframe-grid {
        grid-template-columns: 1fr;
    }
    
    .iframe-container {
        margin-bottom: 1rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        max-width: 300px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-images {
        height: 280px;
    }
    
    .hero-img-1 {
        width: 160px;
        height: 130px;
    }
    
    .hero-img-2 {
        width: 140px;
        height: 110px;
        top: 60px;
        right: 10px;
    }
    
    .hero-img-3 {
        width: 120px;
        height: 100px;
        bottom: 10px;
        left: 10px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-images {
        height: 280px;
    }
    
    .stack-img-1 {
        width: 150px;
        height: 120px;
    }
    
    .stack-img-2 {
        width: 130px;
        height: 100px;
        top: 90px;
        right: 15px;
    }
    
    .stack-img-3 {
        width: 120px;
        height: 90px;
        bottom: 15px;
        left: 20px;
    }
    
    .iframe-container {
        padding: 1rem;
    }
    
    .iframe-container iframe {
        height: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Loading animation for iframes */
.iframe-container {
    position: relative;
}

.iframe-container::before {
    content: 'Loading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    z-index: -1;
}

/* Print styles */
@media print {
    .header,
    .hero,
    .resource-iframes,
    .additional-resources,
    .footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
/* Additional styles specific to services page */
        .services-hero {
            padding: 6rem 0 4rem;
            margin-top: 80px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
        }

        .services-hero-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 500px;
        }

        .services-hero-content {
            z-index: 2;
        }

        .services-hero-text h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #2c5aa0;
            line-height: 1.2;
        }

        .services-hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #666;
            line-height: 1.6;
        }

        .services-grid-section {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .services-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-intro h2 {
            color: #2c5aa0;
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .services-intro p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .service-card {
            background: #fff;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid #ff6b35;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #2c5aa0, #1e3a6f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .service-icon i {
            font-size: 1.8rem;
            color: #fff;
        }

        .service-card h3 {
            color: #2c5aa0;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

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

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: #555;
        }

        .service-features li i {
            color: #ff6b35;
            font-size: 0.9rem;
        }

        .service-cta {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }

        .service-cta .btn-primary {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
        }

        .emergency-banner {
            background: #ff6b35;
            color: #fff;
            padding: 2rem 0;
            text-align: center;
        }

        .emergency-banner h3 {
            color: #fff;
            margin-bottom: 1rem;
        }

        .services-hero-images {
            position: relative;
            height: 500px;
        }

        .services-hero-image-grid {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .services-hero-img {
            position: absolute;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .services-hero-img:hover {
            transform: scale(1.05);
        }

        .services-hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .services-hero-img-1 {
            width: 250px;
            height: 200px;
            top: 0;
            left: 0;
            z-index: 3;
        }

        .services-hero-img-2 {
            width: 220px;
            height: 180px;
            top: 120px;
            right: 50px;
            z-index: 2;
        }

        .services-hero-img-3 {
            width: 200px;
            height: 160px;
            bottom: 0;
            left: 100px;
            z-index: 1;
        }

        .services-hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .services-hero-features {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .services-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            color: #666;
        }

        .services-feature i {
            font-size: 1.2rem;
            color: #ff6b35;
        }

        @media (max-width: 768px) {
            .services-hero {
                padding: 4rem 0 3rem;
            }
            
            .services-hero-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .services-hero-text h1 {
                font-size: 2rem;
            }
            
            .services-hero-text p {
                font-size: 1rem;
            }
            
            .services-hero-images {
                height: 350px;
                order: -1;
            }
            
            .services-hero-img-1 {
                width: 200px;
                height: 160px;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .services-hero-img-2 {
                width: 180px;
                height: 140px;
                top: 80px;
                right: 20px;
            }
            
            .services-hero-img-3 {
                width: 160px;
                height: 120px;
                bottom: 20px;
                left: 20px;
            }
            
            .services-hero-features {
                justify-content: center;
                gap: 1rem;
            }
            
            .services-feature {
                font-size: 0.9rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .services-hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .services-hero-features {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
            
            .services-hero-images {
                height: 280px;
            }
            
            .services-hero-img-1 {
                width: 160px;
                height: 130px;
            }
            
            .services-hero-img-2 {
                width: 140px;
                height: 110px;
                top: 60px;
                right: 10px;
            }
            
            .services-hero-img-3 {
                width: 120px;
                height: 100px;
                bottom: 10px;
                left: 10px;
            }
        }
.container.mt-4 {
    max-height: 600px;
    overflow-y: auto;
}