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

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

/* All H1 and H2 elements */
h1, h2 {
    font-family: 'Exo 2', sans-serif;
}

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

/* Top Header Styles */
.top-header {
    background: #0066cc;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.self-inspection-btn {
    background: #E02428;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
    height: 40px;
    border: 1px solid white;
}

.self-inspection-btn:hover {
    background: #E02428;
}

.google-review {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    justify-content: center;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 12px;
}

.google-review i.fa-google {
    color: #4285f4;
    font-size: 14px;
}

/* Main Header Styles */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 200px;
    height: 40px;
}

.water-drop {
    background: #0066cc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.plus-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #E02428;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .lincoln {
    color: #0066cc;
    font-weight: 700;
    font-size: 18px;
}

.logo-text .plumbing {
    color: #E02428;
    font-weight: 700;
    font-size: 18px;
}

/* Navigation Styles */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #0066cc;
}

.nav-menu i {
    font-size: 12px;
}

/* Header CTA Button */
.phone-btn {
    background: #E02428;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
    border: 1px solid white;
}

.phone-btn:hover {
    background: #E02428;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  
                url('plumbing/Plumbing/Banner_Image.png');   
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .location {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content .tagline {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content .sub-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-cta-btn {
    background: #E02428;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    border: 1px solid white;
}

.hero-cta-btn:hover {
    background: #E02428;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
    
    .main-header .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        display: none;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        border-top: 1px solid #eee;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    .header-cta {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .location {
        font-size: 1.2rem;
    }
    
    .hero-content .tagline {
        font-size: 1.1rem;
    }
    
    .hero-content .sub-tagline {
        font-size: 1rem;
    }
    
    .hero-cta-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    /* Section 2 Responsive for Tablet */
    .who-we-are-text h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .who-we-are-image img {
        height: 380px;
    }
    
    .highlight-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .who-we-are-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 0.8px;
    }
    
    /* Section 3 Responsive for Tablet */
    .services-section {
        padding: 50px 0;
    }
    
    .services-title {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
    
    .services-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-card {
        width: 140px;
        height: 140px;
        box-shadow: 0 0 0 2px white, 0 0 0 4px #E02428;
    }
    
    .service-icon i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
   
    
    .service-title {
        font-size: 0.75rem;
        padding: 0 6px;
        line-height: 1.2;
    }
    
    /* Section 4 Responsive for Tablet */
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-title {
        font-size: 2.2rem;
    }
    
    .why-choose-card {
        padding: 22px 18px;
        height: 220px;
        max-width: 220px;
    }
    
    .card-icon i {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text .lincoln,
    .logo-text .plumbing {
        font-size: 16px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .location {
        font-size: 1rem;
    }
    
    .hero-content .tagline {
        font-size: 1rem;
    }
    
    .hero-content .sub-tagline {
        font-size: 0.9rem;
    }
    
    .hero-cta-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .self-inspection-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .google-review {
        font-size: 11px;
    }
    
    /* Section 2 Responsive for Mobile */
    .who-we-are-text h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .who-we-are-image img {
        height: 220px;
        border-radius: 8px;
    }
    
    .highlight-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .who-we-are-text p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 11px;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }
    
    /* Section 3 Responsive for Mobile */
    .services-section {
        padding: 40px 0;
    }
    
    .services-header {
        text-align: left;
    }
    
    .services-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        line-height: 1.3;
        text-align: left;
    }
    
    .services-description {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .service-card {
        width: 120px;
        height: 120px;
        box-shadow: 0 0 0 1px white, 0 0 0 3px #E02428;
    }
    
    .service-icon i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .service-title {
        font-size: 0.7rem;
        padding: 0 4px;
        line-height: 1.1;
    }
    
    /* Section 4 Responsive for Mobile */
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-title {
        font-size: 1.8rem;
    }
    
    .why-choose-card {
        padding: 20px 15px;
        height: 200px;
        max-width: 200px;
    }
    
    .card-icon i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .card-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .card-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Section 6 Responsive for Mobile */
    .service-areas-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .service-areas-content {
        padding: 60px 10px 40px;
        max-width: 100%;
        justify-content: flex-start;
        min-height: auto;
    }
    
    .service-areas-title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.1;
        letter-spacing: 0.3px;
    }
    
    .service-areas-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.2;
        padding: 0 5px;
    }
    

}

/* Extra Small Mobile Responsive */
@media (max-width: 375px) {
    .who-we-are-text h2 {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .who-we-are-image img {
        height: 180px;
        border-radius: 6px;
    }
    
    .highlight-text {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .who-we-are-text p {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 10px;
        letter-spacing: 0.3px;
        margin-bottom: 6px;
    }
    
    /* Section 3 Responsive for Extra Small Mobile */
    .services-section {
        padding: 30px 0;
    }
    
    .services-header {
        text-align: left;
    }
    
    .services-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
        line-height: 1.2;
        text-align: left;
    }
    
    .services-description {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: left;
    }
    
    .service-card {
        width: 100px;
        height: 100px;
        box-shadow: 0 0 0 1px white, 0 0 0 2px #E02428;
    }
    
    .service-icon i {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .service-title {
        font-size: 0.65rem;
        padding: 0 3px;
        line-height: 1.0;
    }
    
    /* Section 6 Responsive for Mobile */
    .service-areas-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .service-areas-content {
        padding: 60px 15px 40px;
        max-width: 100%;
    }
    
    .service-areas-title {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .service-areas-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .areas-text {
        font-size: 1.1rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .service-areas-cta-text {
        font-size: 0.95rem;
        margin-bottom: 18px;
        line-height: 1.2;
    }
    
    .service-areas-phone-btn {
        font-size: 0.95rem;
        padding: 12px 25px;
        gap: 10px;
    }
    
    .service-areas-phone-btn i {
        font-size: 0.9rem;
    }
    
    /* Section 7 Responsive for Mobile */
    .our-work-section {
        padding: 50px 0;
    }
    
    .our-work-title {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    
    .our-work-grid {
        margin-top: 30px;
    }
    
    .work-image img {
        height: 180px;
    }
    
    .work-item {
        /* border-radius: 8px; */
    }
    
    .work-image {
        /* border-radius: 8px; */
    }
    
    /* Section 4 Responsive for Extra Small Mobile */
    .why-choose-section {
        padding: 30px 0;
    }
    
    .why-choose-title {
        font-size: 1.5rem;
    }
    
    .why-choose-card {
        padding: 18px 12px;
        height: 180px;
        max-width: 180px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .card-title {
        font-size: 0.8rem;
        margin-bottom: 6px;
        line-height: 1.1;
    }
    
    .card-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* Section 6 Responsive for Extra Small Mobile */
    .service-areas-section {
        height: 100vh;
        min-height: 450px;
    }
    
    .service-areas-content {
        padding: 50px 8px 30px;
        max-width: 100%;
        justify-content: flex-start;
        min-height: auto;
    }
    
    .service-areas-title {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 1.1;
        letter-spacing: 0.2px;
    }
    
    .service-areas-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.2;
        padding: 0 3px;
    }
    
    .areas-text {
        font-size: 0.9rem;
        margin-bottom: 2px;
        line-height: 1.2;
        padding: 0 2px;
    }
    
    .service-areas-cta-text {
        font-size: 12px;
        margin-bottom: 12px;
        padding: 0 3px;
    }
    
    .service-areas-phone-btn {
        font-size: 12px;
        padding: 8px 16px;
        gap: 6px;
        margin-top: 8px;
    }
    
    /* Section 7 Responsive for Extra Small Mobile */
    .our-work-section {
        padding: 40px 0;
    }
    
    .our-work-title {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .our-work-grid {
        margin-top: 25px;
    }
    
    .work-image img {
        height: 150px;
    }
    
    .work-item {
        /* border-radius: 6px; */
    }
    
    .work-image {
        /* border-radius: 6px; */
    }
    
    /* Section 8 Responsive for Extra Small Mobile */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
    }
    
    .faq-content {
        margin-top: 30px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .question-text {
        font-size: 0.95rem;
        padding-right: 15px;
    }
    
    .faq-toggle {
        width: 32px;
        height: 32px;
    }
    
    .faq-toggle i {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding: 0 20px 18px;
    }
    

}

/* Section 3: Our Services Styles */
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-bottom: 100px;

}

.services-header {
    /* max-width: 800px; */
    margin: 0 auto;
}

.services-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.services-description {
    color: #000000;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-card {
    background: #E02428;
    border: 3px solid #E02428;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 0 5px white, 0 0 0 10px #E02428;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(224, 36, 40, 0.3);
}

.service-icon {
    margin-bottom: 15px;
}

.service-icon i {
    color: white;
    font-size: 2.5rem;
}

.service-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    padding: 0 10px;
}

/* Animation for mobile menu */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Section 2: Who We Are Styles */
.who-we-are-section {
    background: white;
}

.who-we-are-image {
    position: relative;
    overflow: hidden;
}

.who-we-are-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: linear-gradient(90deg, #E02428 0%, #0066cc 100%); */
    z-index: 2;
}

.who-we-are-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.who-we-are-image:hover img {
    transform: scale(1.05);
}

.who-we-are-text {
    padding-left: 0;
}

.section-subtitle {
    color: #0066cc !important;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.who-we-are-text h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-text {
    color: #E02428 !important;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.who-we-are-text p {
    color: #000000;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.who-we-are-text p:last-child {
    margin-bottom: 0;
}

/* Large Screen Responsive */
@media (max-width: 1200px) {
    .who-we-are-text h2 {
        font-size: 2.3rem;
    }
    
    .who-we-are-image img {
        height: 300px;
    }
    
    .highlight-text {
        font-size: 1.05rem;
    }
    
    .who-we-are-text p {
        font-size: 0.98rem;
    }
    
    /* Section 3 Responsive */
    .services-title {
        font-size: 2.3rem;
    }
    
    .services-description {
        font-size: 1.05rem;
    }
    
    .service-card {
        width: 180px;
        height: 180px;
        box-shadow: 0 0 0 2px white, 0 0 0 5px #E02428;
    }
    
    .service-icon i {
        font-size: 2.2rem;
    }
    
    .service-title {
        font-size: 0.85rem;
    }
    
    /* Section 4 Responsive */
    .why-choose-title {
        font-size: 2.8rem;
    }
    
    .why-choose-card {
        padding: 28px 22px;
        height: 260px;
        max-width: 260px;
    }
    
    .card-icon i {
        font-size: 2.8rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    /* Section 6 Responsive */
    .service-areas-section {
        height: 100vh;
        min-height: 550px;
    }
    
    .service-areas-content {
        padding: 100px 20px 70px;
    }
    
    .service-areas-title {
        font-size: 45px;
        margin-bottom: 20px;
    }
    
    .service-areas-subtitle {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .areas-text {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .service-areas-cta-text {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .service-areas-phone-btn {
        font-size: 1.2rem;
        padding: 18px 35px;
    }
    
    /* Section 7 Responsive */
    .our-work-title {
        font-size: 2.3rem;
    }
    
    .work-image img {
        height: 220px;
    }
    
    /* Section 8 Responsive */
    .faq-title {
        font-size: 2.3rem;
    }
    
    .faq-subtitle {
        font-size: 1.05rem;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    

}

/* Medium Screen Responsive */
@media (max-width: 1024px) {
    .who-we-are-text h2 {
        font-size: 2rem;
    }
    
    .who-we-are-image img {
        height: 300px;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .who-we-are-text p {
        font-size: 0.95rem;
    }
    
    .section-subtitle {
        font-size: 13px;
        text-align: left !important;
    }
    
    /* Section 3 Responsive */
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .service-card {
        width: 160px;
        height: 160px;
        box-shadow: 0 0 0 2px white, 0 0 0 4px #E02428;
    }
    
    .service-icon i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .service-title {
        font-size: 0.8rem;
        padding: 0 8px;
    }
    
    /* Section 4 Responsive */
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-title {
        font-size: 2.5rem;
    }
    
    .why-choose-card {
        padding: 25px 20px;
        height: 240px;
        max-width: 240px;
    }
    
    .card-icon i {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    /* Section 6 Responsive */
    .service-areas-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .service-areas-content {
        padding: 80px 20px 60px;
    }
    
    .service-areas-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .service-areas-subtitle {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .areas-text {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .service-areas-cta-text {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .service-areas-phone-btn {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    /* Section 7 Responsive */
    .our-work-section {
        padding: 60px 0;
    }
    
    .our-work-title {
        font-size: 2rem;
    }
    
    .our-work-grid {
        margin-top: 40px;
    }
    
    .work-image img {
        height: 200px;
    }
    
    /* Section 8 Responsive */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-content {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding: 0 25px 20px;
    }
    

}

/* Section 4: Why Choose Us Styles */
.why-choose-section {
    background: #006bad;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -13%;
    left: 0;
    background-image: url('plumbing/Plumbing/Who_choose_us/shape_01.png');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    z-index: 2;
    background-size: contain;
}
.why-choose-section::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    background-image: url('plumbing/Plumbing/Who_choose_us/shape_02.png');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    z-index: 2;
    background-size: contain;
}


@media(max-width: 480px){
    .why-choose-section::before {
        top: -6%;
    }
}

@media(min-width: 481px) and (max-width: 540px){
    .why-choose-section::before {
        top: -6%;
    }
}

@media(min-width: 541px) and (max-width: 641px){
    .why-choose-section::before {
        top: -11%;
    }
}

@media(min-width: 641px) and (max-width: 768px){
    .why-choose-section::before {
        top: -11%;
    }
}
@media(min-width: 768px) and (max-width: 991px){
    .why-choose-section::before {
        top: -11%;
    }
}
.why-choose-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.why-choose-grid {
    position: relative;
    z-index: 2;
}

.why-choose-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    height: 280px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, #E02428 0%, #0066cc 100%); */
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-icon {
    margin-bottom: 20px;
    position: relative;
}

.card-icon i {
    color: #E02428;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-icon i {
    transform: scale(1.1);
}

.card-title {
    color: #333;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Roboto';
}

    .card-description {
        color: #000000;
        font-size:20px;
        line-height: 1.6;
        margin-bottom: 0;
        font-family: 'Roboto';
    }

/* Section 6: Service Areas We Cover Styles */
.service-areas-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Wavy Border */
.wavy-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
}

.blue-band {
    height: 8px;
    background: #0066cc;
    width: 100%;
}

.red-wavy-line {
    height: 12px;
    background: #E02428;
    width: 100%;
    position: relative;
}

.red-wavy-line::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    height: 12px;
    background: #E02428;
    clip-path: polygon(
        0% 50%,
        5% 0%,
        10% 50%,
        15% 0%,
        20% 50%,
        25% 0%,
        30% 50%,
        35% 0%,
        40% 50%,
        45% 0%,
        50% 50%,
        55% 0%,
        60% 50%,
        65% 0%,
        70% 50%,
        75% 0%,
        80% 50%,
        85% 0%,
        90% 50%,
        95% 0%,
        100% 50%
    );
}

/* Mobile responsive for wavy border */
@media (max-width: 768px) {
    .blue-band {
        height: 6px;
    }
    
    .red-wavy-line {
        height: 10px;
    }
    
    .red-wavy-line::before {
        height: 10px;
        top: -5px;
    }
}

@media (max-width: 480px) {
    .blue-band {
        height: 5px;
    }
    
    .red-wavy-line {
        height: 8px;
    }
    
    .red-wavy-line::before {
        height: 8px;
        top: -4px;
    }
}

.service-areas-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('plumbing/Plumbing/service_are_we_cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-areas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.service-areas-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 120px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.service-areas-title {
    color: white;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.service-areas-subtitle {
    color: white;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.service-areas-list {
    margin-bottom: 35px;
    text-align: center;
    width: 100%;
}

.areas-text {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.service-areas-cta-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.service-areas-phone-btn {
    background: #E02428;
    color: white;
    border: 2px solid #000;
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 0 auto;
}

.service-areas-phone-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.service-areas-phone-btn i {
    font-size: 1.2rem;
}

/* Section 7: Check Out Our Work Styles */
.our-work-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.our-work-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.our-work-grid {
    margin-top: 50px;
}

.work-item {
    position: relative;
    overflow: hidden;
    /* border-radius: 12px; */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.work-image {
    position: relative;
    overflow: hidden;
    /* border-radius: 12px; */
}

.work-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.work-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, rgba(0, 102, 204, 0.1), rgba(224, 36, 40, 0.1)); */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.work-item:hover .work-image::before {
    opacity: 1;
}

/* Section 8: Frequently Asked Questions Styles */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-subtitle {
    color: #000000;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-content {
    margin-top: 50px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.question-text {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    background: #E02428;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(224, 36, 40, 0.3);
}

.faq-toggle i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer p {
    color: #000000;
    font-size:20px;
    line-height: 1.6;
    margin: 0;
    padding: 0 30px 25px;
}

/* Active FAQ Item */
.faq-item.active .faq-toggle {
    background: E02428;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-section{
    padding-bottom: 220px !important;
}

/* Footer Section Styles */
.footer-section {
    background: black;
    position: relative;
}
.footer-section .container.outer{
    position: absolute;
}
.footer-section .container.outer {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* Hero Footer Container */
.hero-footer-container {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 40px 20px;
    border-radius: 20px;
    background: #333;
}

.hero-footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.hero-footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.hero-footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-footer-content h1 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-footer-cta-btn {
    background: #E02428;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 36, 40, 0.3);
}

.hero-footer-cta-btn:hover {
    background: #c01e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 36, 40, 0.4);
}

.hero-footer-cta-btn i {
    font-size: 1.1rem;
}

/* Main Footer Styles */
.main-footer {
    background: #000000;
    color: white;
    padding: 220px 0 20px;
}

.footer-content {
    margin-bottom: 35px;
}

.footer-content .row {
    align-items: flex-start;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

.footer-water-drop {
    width: 100%;
    height: 100%;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-water-drop::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #0066cc;
}

.footer-water-drop i {
    color: white;
    font-size: 1.5rem;
}

.footer-wrench {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #E02428;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.footer-wrench i {
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-lincoln {
    color: #0066cc;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-plumbing {
    color: #E02428;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer Headings */
.footer-heading {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 0.95rem;
}

.contact-item i {
    color: #E02428;
    font-size: 1.1rem;
    width: 20px;
}

/* Footer Services */
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 0;
}

.footer-services li:before {
    content: '•';
    color: #E02428;
    font-weight: bold;
    margin-right: 8px;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
}

.copyright {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E02428;
}

.separator {
    color: #000000;
    font-size: 0.9rem;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.social-text {
    color: #cccccc;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #333333;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #E02428;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 1rem;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .hero-footer-container {
        height: 35vh;
        min-height: 250px;
        margin: 20px 10px;
    }
    
    .hero-footer-content h1 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .hero-footer-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-heading {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-services {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .social-media {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-links {
        margin: 15px 0;
    }
}

@media (max-width: 576px) {
    .hero-footer-container {
        height: 30vh;
        min-height: 200px;
        margin: 15px 5px;
    }
    
    .hero-footer-content h1 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-footer-cta-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-logo-text {
        align-items: center;
    }
    
    .social-media {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    /* Mobile Footer Improvements */
    .footer-section .container.outer {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 20px;
    }
    
    .hero-footer-container {
        margin: 10px;
        border-radius: 15px;
    }
    
    .main-footer {
        padding: 30px 0 20px;
    }
    
    .footer-content .row {
        gap: 20px;
    }
    
    .footer-content .col-lg-4 {
        margin-bottom: 25px;
    }
    
    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-water-drop {
        width: 100%;
        height: 100%;
    }
    
    .footer-water-drop i {
        font-size: 1.2rem;
    }
    
    .footer-wrench {
        width: 16px;
        height: 16px;
        top: -3px;
        right: -3px;
    }
    
    .footer-wrench i {
        font-size: 0.7rem;
    }
    
    .footer-lincoln {
        font-size: 1rem;
    }
    
    .footer-plumbing {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .contact-item {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .contact-item i {
        font-size: 1rem;
        width: 16px;
    }
    
    .footer-services li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .social-text {
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .social-icon i {
        font-size: 0.9rem;
    }
}


@media (max-width:481px) and (min-width: 356px) {
    .why-choose-section::before {
        top: -1%;
    }
}
@media (max-width:355px) and (min-width: 320px) {
    .why-choose-section::before {
        top: -1%;
    }
}

@media (max-width: 1024px) {
   .service-areas-content .service-areas-title {
        font-size: 30px !important;
    }
    .service-areas-content .service-areas-subtitle {
        font-size: 20px !important;
    }
    .areas-text {
        font-size: 18px !important;
    }
    
    /* FAQ Section Mobile Font Sizes */
    .faq-title {
        font-size: 24px !important;
    }
    
    .faq-subtitle {
        font-size: 20px !important;
    }
    
    .question-text {
        font-size: 18px !important;
    }
    
    .faq-answer p {
        font-size: 18px !important;
    }
    
}
.service-icon img {
    width: 90px !important;
    height: 75px !important;
}