/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    line-height:1.7;
    overflow-x:hidden;
    background:#f5fcff;
}

:root{
    --aqua:#00bcd4;
    --light:#dff7ff;
    --dark:#340e71;
}

.container{
    width:80%;
    margin:auto;
}

a{
    text-decoration:none;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#ea3c01;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
}

.section-title h2{
    font-size:46px;
    color:var(--dark);
    margin-top:15px;
}

/* ================= HERO ================= */

.motor-hero{
    width:100%;
    min-height:65vh;
    background:
    linear-gradient(rgba(0,77,102,0.75), rgba(0,77,102,0.75)),
    url('../images/motor_banner.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.motor-hero-content{
    width:60%;
    color:#fff;
}

.motor-hero-content span{
    color:#7eefff;
    font-weight:bold;
    letter-spacing:2px;
}

.motor-hero-content h1{
    font-size:65px;
    line-height:1.2;
    margin:20px 0;
}

.motor-hero-content p{
    font-size:18px;
    margin-bottom:35px;
}

.motor-btn{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:15px 35px;
    font-weight:bold;
}

/* ================= ABOUT ================= */

.motor-about{
    padding:90px 0;
}

.motor-flex{
    display:flex;
    gap:60px;
    align-items:center;
}

.motor-image,
.motor-content{
    width:50%;
}

.motor-image img{
    width:100%;
    height:550px;
    object-fit:cover;
}

.motor-content span{
    color:#ea3c01;
    font-weight:bold;
}

.motor-content h2{
    font-size:46px;
    color:var(--dark);
    margin:20px 0;
}

.motor-content p{
    color:#555;
    margin-bottom:20px;
}

/* ================= TYPES ================= */

.motor-types{
    padding:90px 0;
    background:#fff;
}

.motor-type-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.motor-type-box{
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.motor-type-box img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.motor-type-box h3{
    padding:20px 20px 10px;
    color:var(--dark);
}

.motor-type-box p{
    padding:0 20px 20px;
}

.motor-type-box a{
    display:inline-block;
    margin:0 20px 25px;
    background:#ea3c01;
    color:#fff;
    padding:12px 25px;
}

/* ================= BENEFITS ================= */

.motor-benefits{
    padding:90px 0;
}

.motor-benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.motor-benefit-box{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.motor-benefit-box i{
    font-size:45px;
    color:#ea3c01;
    margin-bottom:20px;
}

/* ================= COVERAGE ================= */

.motor-coverage{
    padding:90px 0;
    background:#fff;
}

.coverage-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.coverage-box{
    background:var(--light);
    padding:35px;
    text-align:center;
    color:var(--dark);
    font-weight:bold;
}

/* ================= CLAIM ================= */

.motor-claim{
    padding:90px 0;
}

.claim-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.claim-box{
    text-align:center;
}

.claim-number{
    width:90px;
    height:90px;
    background:#ea3c01;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:20px;
    font-size:32px;
    font-weight:bold;
}

/* ================= FAQ ================= */

.motor-faq{
    padding:90px 0;
    background:#fff;
}

.motor-faq-box{
    background:#fff;
    padding:30px;
    margin-bottom:25px;
    border-left:5px solid #ea3c01;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.motor-faq-box h3{
    color:var(--dark);
    margin-bottom:12px;
}

/* ================= TESTIMONIAL ================= */

.motor-testimonial{
    padding:90px 0;
}

.motor-testimonial-box{
    background:var(--light);
    padding:60px;
    text-align:center;
}

.motor-testimonial-box p{
    font-size:24px;
    color:var(--dark);
    margin-bottom:20px;
}

.motor-testimonial-box h3{
    color:#ea3c01;
}

/* ================= DOCUMENTS ================= */

.motor-documents{
    padding:90px 0;
    background:#fff;
}

.motor-document-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.motor-document-box{
    background:#fff;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    color:var(--dark);
    font-weight:bold;
}

/* ================= FINAL CTA ================= */

.motor-final-cta{
    padding:100px 0;
    background:
    linear-gradient(rgba(0,77,102,0.90), rgba(0,77,102,0.90)),
    url('../img/motor-final.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.motor-final-cta h2{
    font-size:52px;
    margin-bottom:20px;
}

.motor-final-cta p{
    width:70%;
    margin:auto;
    margin-bottom:35px;
}

.motor-final-btns{
    display:flex;
    justify-content:center;
    gap:20px;
}

.motor-final-btns a{
    display:inline-block;
    background:#ea3c01;
    color:#fff;
    padding:15px 35px;
    font-weight:bold;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .motor-type-grid,
    .motor-benefit-grid,
    .coverage-grid,
    .claim-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .motor-document-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .container{
        width:92%;
    }

    .motor-hero-content{
        width:100%;
        text-align:center;
    }

    .motor-hero-content h1{
        font-size:40px;
    }

    .motor-flex{
        flex-direction:column;
    }

    .motor-image,
    .motor-content{
        width:100%;
    }

    .motor-image img{
        height:350px;
    }

    .section-title h2,
    .motor-content h2,
    .motor-final-cta h2{
        font-size:34px;
    }

    .motor-type-grid,
    .motor-benefit-grid,
    .coverage-grid,
    .claim-grid,
    .motor-document-grid{
        grid-template-columns:1fr;
    }

    .motor-final-cta p{
        width:100%;
    }

    .motor-final-btns{
        flex-direction:column;
        align-items:center;
    }

}