/* ==========================
   1. RESET / BASE
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#222;
    text-align:center;
}

img{
    max-width:100%;
    display:block;
}

.page{
    width:100%;
    margin:0;
    background:#fff;
}


/* ==========================
   2. SHARED COMPONENTS
========================== */

.section-title{
    font-size:40px;
    font-weight:700;
    text-transform:uppercase;
    text-align:center;
    color:#000;
    margin:70px 20px 35px;
    line-height:1.1;
    position:relative;
    display:inline-block;
}

.section-title::after{
    content:"";
    display:block;
    width:180px;
    height:6px;
    background:#d62828;
    margin:18px auto 0;
}

.btn-submit{
    background:#d5524b;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
}

.btn-submit:hover{
    background:#e6222d;
}

.roof-gallery img,
.fleet-card img,
.hire-box img,
.partner-logo{
    transition:all 0.3s ease;
}

.roof-gallery img:hover,
.fleet-card img:hover,
.hire-box img:hover,
.partner-logo:hover{
    transform:scale(1.05);
}


/* ==========================
   3. HERO
========================== */

.hero{
    background:#1f638f;
    color:#fff;
    padding:30px 0 0;
    position:relative;
    width:100%;
}

.logo{
    max-width:260px;
    margin:0 auto 15px;
}

.hero h1{
    font-size:36px;
    text-transform:uppercase;
    line-height:1.1;
    margin-bottom:25px;
}

.call-btn{
    position:absolute;
    top:40px;
    right:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#d5524b;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:18px;
    font-size:20px;
    font-weight:700;
    line-height:1;
    transition:0.3s;
}

.call-btn img{
    width:22px;
    height:22px;
    object-fit:contain;
    filter:brightness(0) invert(1);
}

.call-btn:hover{
    background:#e6222d;
}

.hero-divider{
    height:8px;
    background:#d62828;
}


/* ==========================
   4. CONTACT / ABOUT
========================== */

.contact-about-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    padding:80px 40px;
    max-width:none;
    margin:0;

    background:
        linear-gradient(
            rgba(255,255,255,0.85),
            rgba(255,255,255,0.85)
        ),
        url("images/roof_strips_2.1.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.quote-form-card{
    width:100%;
    max-width:520px;
    margin-left:auto;
    background:#1f638f;
    padding:35px;
    border-radius:14px;
    box-shadow:0 4px 20px rgba(0,0,0,0.10);
}

.quote-form-card h2{
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
}

.quote-form-card form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.quote-form-card input,
.quote-form-card select,
.quote-form-card textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.quote-form-card select{
    background:#fff;
}

.quote-form-card textarea{
    min-height:120px;
}

.form-note{
    font-size:12px;
    color:#fff;
    text-align:center;
    margin-top:12px;
    opacity:0.9;
    line-height:1.4;
}

.about-card{
    width:100%;
    max-width:600px;
    margin-right:auto;
}

.about-card h2{
    font-size:48px;
    color:#000;
    margin-bottom:25px;
    font-weight:700;
    position:relative;
    display:inline-block;
}

.about-card h2::after{
    content:"";
    display:block;
    width:90px;
    height:5px;
    background:#d62828;
    margin:12px auto 0;
}

.about-text{
    color:#000;
    font-size:16px;
    line-height:1.3;
    font-weight:500;
    margin-bottom:35px;
}

.licence-list{
    list-style:none;
    padding:0;
    margin:0;
}

.licence-list li{
    color:#000;
    font-size:18px;
    font-weight:500;
    margin:18px 0;
    line-height:1.3;
}

.licence-list li::before{
    content:"✓";
    color:#28a745;
    font-size:18px;
    font-weight:700;
    margin-right:12px;
}


/* ==========================
   5. ROOF COVERINGS
========================== */

.roof-types-section{
    background:#1f638f;
    padding:60px 30px 80px;
    margin:0;
}

.roof-types-section .section-title{
    margin-top:0;
    color:#fff;
}

.roof-types-section .section-title::after{
    background:#d62828;
}

.roof-list{
    list-style:none;
    max-width:1200px;
    margin:0 auto 50px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px 40px;
    text-align:left;
    justify-items:center;
}

.roof-list li{
    width:100%;
    max-width:300px;
    color:#fff;
    font-size:18px;
    font-weight:600;
}

.roof-list li::before{
    content:"✓";
    color:#ffd43b;
    font-size:30px;
    font-weight:700;
    margin-right:12px;
}

.roof-gallery{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.roof-gallery img{
    width:350px;
    height:350px;
    object-fit:cover;
    border-radius:8px;
}


/* ==========================
   6. FLEET
========================== */

.fleet-grid{
    display:flex;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
    margin:60px auto;
    max-width:1600px;
}

.fleet-card{
    width:300px;
    text-align:center;
}

.fleet-card img{
    width:100%;
    height:220px;
    object-fit:contain;
}

.fleet-text{
    margin-top:20px;
    font-size:20px;
    line-height:1.5;
    color:#1a1a1a;
}

.fleet-text strong{
    color:#1f638f;
}


/* ==========================
   7. HIRE EQUIPMENT
========================== */

.hire-section{
    background:#1f638f;
    padding:60px 30px 80px;
    margin:60px 0;
}

.hire-section .section-title{
    color:#fff;
}

.hire-list{
    list-style:none;
    max-width:1200px;
    margin:0 auto 50px;
    display:grid;
    grid-template-columns:repeat(3, auto);
    justify-content:center;
    column-gap:120px;
    row-gap:30px;
}

.hire-list li{
    color:#fff;
    font-size:20px;
    font-weight:700;
    white-space:nowrap;
}

.hire-list li::before{
    content:"✓";
    color:#ffcc00;
    font-size:28px;
    font-weight:900;
    margin-right:12px;
}

.hire-gallery{
    display:grid;
    grid-template-columns:repeat(6, 180px);
    gap:20px;
    justify-content:center;
    max-width:1400px;
    margin:0 auto;
}

.hire-box{
    width:180px;
    height:180px;
    background:rgba(255,255,255,0.15);
    border-radius:12px;
    overflow:hidden;
}

.hire-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
}


/* ==========================
   8. PARTNERS
========================== */

.partners-section{
    padding:30px 20px 50px;
    background:#fff;
    text-align:center;
}

.partners-section .section-title{
    margin-top:0;
    margin-bottom:25px;
}

.partners-intro{
    max-width:700px;
    margin:10px auto 35px;
    font-size:18px;
    line-height:1.5;
    color:#555;
}

.partners-grid{
    display:flex;
    justify-content:center;
    gap:120px;
    flex-wrap:wrap;
    margin-top:10px;
}

.partner-box{
    max-width:320px;
}

.partner-logo{
    max-width:240px;
    margin:0 auto;
}


/* ==========================
   9. FOOTER
========================== */

.main-footer{
    background:#1f638f;
    color:#fff;
    text-align:center;
    padding:22px 20px 18px;
    border-top:8px solid #d62828;
}

.company-group{
    width:100%;
    margin:0 0 10px;
    padding:0;
}

.company-group-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-items:center;
}

.company-group-container img{
    display:block;
    max-width:100%;
    max-height:120px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.payment-logos{
    margin:8px 0 12px;
    text-align:center;
}

.payment-logos img{
    height:40px;
    width:auto;
    display:inline-block;
}

.footer-info{
    margin-top:6px;
    font-size:11px;
    line-height:1.4;
}

.footer-info p{
    margin:2px 0;
    opacity:0.9;
}

.footer-credit{
    margin-top:12px;
    color:#cccccc;
    font-size:10px;
    line-height:1.3;
}


/* ==========================
   10. RESPONSIVE
========================== */

@media(max-width:900px){

    .hero{
        padding:25px 20px 0;
    }

    .call-btn{
        position:static;
        margin:0 auto 25px;
        width:max-content;
    }

    .logo{
        max-width:220px;
    }

    .hero h1{
        font-size:28px;
        padding:0 10px;
    }

    .contact-about-section{
        grid-template-columns:1fr;
        padding:45px 20px;
        gap:35px;
    }

    .quote-form-card{
        max-width:500px;
        width:100%;
        margin:0 auto;
    }

    .about-card{
        max-width:500px;
        width:100%;
        margin:0 auto;
        text-align:center;
    }

    .section-title{
        font-size:34px;
        margin:55px 20px 30px;
    }

    .roof-list{
        font-size:18px;
    }

    .roof-gallery img{
        width:90%;
        max-width:350px;
        height:350px;
    }

    .fleet-grid{
        gap:35px;
        margin:45px auto;
    }

    .fleet-card{
        width:90%;
        max-width:320px;
    }

    .hire-list{
        column-gap:60px;
    }

    .hire-gallery{
        grid-template-columns:repeat(3, 180px);
    }

    .partners-grid{
        gap:50px;
    }
}

@media(max-width:768px){

    .roof-list{
        grid-template-columns:1fr;
        gap:15px;
        max-width:500px;
    }

    .hire-list{
        grid-template-columns:1fr;
        gap:18px;
    }

    .hire-list li{
        white-space:normal;
    }

    .hire-gallery{
        grid-template-columns:repeat(2, 180px);
    }

    .company-group-container{
        padding:20px;
    }

    .company-group-container img{
        max-width:90%;
        max-height:none;
        height:auto;
    }
}

@media(max-width:500px){

    .hero{
        padding:22px 15px 0;
    }

    .call-btn{
        font-size:18px;
        padding:12px 24px;
        border-radius:16px;
    }

    .call-btn img{
        width:20px;
        height:20px;
    }

    .logo{
        max-width:210px;
    }

    .hero h1{
        font-size:25px;
        line-height:1.25;
    }

    .contact-about-section{
        display:block;
        padding:35px 20px;
    }

    .quote-form-card{
        padding:25px 18px;
        border-radius:12px;
        margin-bottom:35px;
    }

    .quote-form-card h2{
        font-size:28px;
    }

    .about-card h2{
        font-size:40px;
    }

    .section-title{
        font-size:28px;
        margin:50px 15px 28px;
    }

    .section-title::after{
        width:140px;
        height:5px;
    }

    .roof-gallery{
        gap:20px;
    }

    .roof-gallery img{
        width:100%;
        height:280px;
    }

    .fleet-card img{
        height:190px;
    }

    .hire-gallery{
        grid-template-columns:1fr;
        max-width:220px;
    }

    .hire-box{
        width:220px;
        height:220px;
    }

    .partner-logo{
        max-width:210px;
    }

    .main-footer{
        padding:20px 15px 16px;
    }

    .company-group-container img{
        max-width:100%;
    }

    .payment-logos img{
        height:34px;
    }

    .footer-info{
        font-size:11px;
    }

    .footer-credit{
        font-size:10px;
    }
}