/* ==========================================
UNIFIED GLOBAL STYLESHEET
========================================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

img{
    max-width: 100%;
    display: block;
}

/* ==========================
CONTAINER
========================== */
.container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ==========================
HEADER & NAVIGATION
========================== */
.header{
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

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

.nav{
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a{
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: .3s;
}

.nav a:hover{
    opacity: .7;
}

.call-btn{
    background: #000;
    color: #fff !important;
    padding: 12px 22px;
    border-radius: 50px;
}

/* ==========================
HERO SECTION
========================== */
.hero{
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.20);
}

.hero-content{
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.hero-logo{
    width: 220px;
    max-width: 100%;
    margin: 0 auto 25px;
    display: block;
}

.hero-content h1{
    color: #fff;
    font-size: clamp(2.6rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,.8);
}

.hero-content p{
    color: #fff;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    max-width: 750px;
    margin: auto;
    margin-bottom: 35px;
    text-shadow: 0 4px 12px rgba(0,0,0,.8);
}

/* ==========================
BUTTONS
========================== */
.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary{
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
    text-align: center;
}

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

.btn-secondary{
    background: #fff;
    color: #000;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform: translateY(-2px);
}

/* ==========================
INTRO SECTION
========================== */
.intro-section{
    padding: 80px 0;
    text-align: center;
}

.intro-section h2{
    margin-bottom: 25px;
    font-size: 2.3rem;
}

.intro-section p{
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
}

/* ==========================
CONTENT SECTIONS (Internal Pages Fixed)
========================== */
.content-section{
    padding: 80px 0;
    width: 100%;
}

.content-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.content-grid.reverse{
    direction: rtl;
}

.content-grid.reverse > *{
    direction: ltr;
}

.content-image{
    width: 100%;
    overflow: hidden;
}

/* This fixes the giant internal page image breakout issue */
.content-image img{
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
}

.content-text{
    width: 100%;
}

.content-text h2{
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.content-text p{
    margin-bottom: 18px;
}

.content-text ul{
    padding-left: 20px;
}

.content-text li{
    margin-bottom: 10px;
}

/* ==========================
QUOTE FORM
========================== */
.quote-section{
    padding: 80px 0;
    background: #f7f7f7;
}

.quote-card{
    max-width: 850px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.quote-card h2{
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.quote-card form{
    display: grid;
    gap: 15px;
}

.quote-card input,
.quote-card select,
.quote-card textarea{
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.quote-card button{
    background: #000;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

/* ==========================
SERVICES GRID & CIRCULAR IMAGES
========================== */
.services{
    padding: 90px 0;
    background: #fff;
}

.services h2{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-intro{
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.service-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover{
    transform: translateY(-8px);
}

.service-card img{
    width: 180px !important;
    height: 180px !important;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 25px;
    border: 4px solid #f7f7f7;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-card h3{
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.service-card p{
    padding: 0 20px 25px;
    font-size: 0.95rem;
}

/* ==========================
WHY CHOOSE US
========================== */
.why-us{
    background: #f7f7f7;
    padding: 90px 0;
}

.why-us h2{
    text-align: center;
    margin-bottom: 50px;
}

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

.features div{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

/* ==========================
SERVICE AREAS
========================== */
.service-areas{
    padding: 90px 0;
}

.service-areas h2{
    text-align: center;
    margin-bottom: 40px;
}

.areas-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.areas-grid div{
    background: #000;
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 10px;
}

/* ==========================
LOCAL SEO
========================== */
.local-seo{
    padding: 90px 0;
    background: #f7f7f7;
}

.local-seo h2{
    margin-bottom: 15px;
    margin-top: 35px;
}

.local-seo p{
    margin-bottom: 20px;
}

/* ==========================
FAQ
========================== */
.faq{
    padding: 90px 0;
}

.faq h2{
    text-align: center;
    margin-bottom: 50px;
}

.faq-item{
    max-width: 900px;
    margin: 0 auto 25px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
}

.faq-item h3{
    margin-bottom: 10px;
}

/* ==========================
CTA SECTION
========================== */
.cta-section{
    background: #000;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

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

.cta-section p{
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ==========================
FOOTER
========================== */
.footer{
    background: #111;
    color: #fff;
    text-align: center;
    padding: 60px 20px 100px;
}

.footer img{
    margin: 0 auto 20px;
}

.footer h3{
    margin-bottom: 15px;
}

.footer p{
    margin-bottom: 10px;
}

.footer a{
    color: #fff;
    text-decoration: none;
}

/* ==========================
FLOATING BAR
========================== */
.floating-bar{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

.floating-call,
.floating-quote{
    flex: 1;
    text-align: center;
    padding: 18px;
    font-weight: 700;
    text-decoration: none;
}

.floating-call{
    background: #000;
    color: #fff;
}

.floating-quote{
    background: #d80000;
    color: #fff;
}

/* ==========================
RESPONSIVE DESIGN (Tablets)
========================== */
@media(max-width: 768px){
    .nav{
        display: none;
    }

    .hero{
        min-height: 100svh;
    }

    .hero-content h1{
        font-size: 3rem;
    }

    .hero-content p{
        font-size: 1.2rem;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary{
        width: 280px;
    }

    .content-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-grid.reverse{
        direction: ltr;
    }

    .content-image img{
        height: 250px;
    }

    .content-text h2{
        font-size: 1.8rem;
    }

    .quote-card{
        padding: 25px;
    }

    .faq-item{
        padding: 20px;
    }

    body{
        padding-bottom: 70px;
    }
}

/* ==========================
RESPONSIVE DESIGN (Mobile Phones)
========================== */
@media(max-width: 600px) {
    .hero-overlay{
        background: rgba(0,0,0,.15);
    }
}

@media(max-width: 480px){
    .hero-content h1{
        font-size: 2.2rem;
    }

    .hero-content p{
        font-size: .95rem;
    }

    .content-image img{
        height: 220px;
    }

    .btn-primary,
    .btn-secondary{
        width: 100%;
        max-width: 280px;
    }
}
