/* ===================================
   RESET
=================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Cairo',sans-serif;
    direction:rtl;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===================================
   GENERAL
=================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:38px;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

/* ===================================
   HEADER
=================================== */

header{

    position:absolute;
    top:0;
    right:0;
    left:0;
    z-index:999;
    padding:25px 0;

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo{

    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;

    font-size:30px;

    font-weight:700;

}

.logo i{

    color:#0d6efd;
    font-size:34px;

}

#navbar{

    display:flex;
    align-items:center;
    gap:35px;

}

#navbar a{

    color:#fff;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

#navbar a:hover{

    color:#0d6efd;

}

.menu-toggle{

    display:none;

    border:none;

    background:none;

    color:#fff;

    cursor:pointer;

    font-size:30px;

}

/* ===================================
   HERO
=================================== */

.hero{

    position:relative;

    height:100vh;

    background:url("../images/car1.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

    color:#fff;

}

.hero h1{

    font-size:68px;

    line-height:85px;

    margin-bottom:25px;

    font-weight:800;

}

.hero p{

    font-size:22px;

    line-height:40px;

    color:#f3f3f3;

    margin-bottom:40px;

}

/* ===================================
   BUTTONS
=================================== */

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn{

    display:inline-block;

    padding:17px 40px;

    border-radius:8px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.btn-primary{

    background:#0d6efd;

    color:#fff;

}

.btn-primary:hover{

    background:#0b5ed7;

}

.btn-secondary{

    background:#fff;

    color:#222;

}

.btn-secondary:hover{

    transform:translateY(-3px);

}
/* ===================================
   SERVICES
=================================== */

.services{

    padding:100px 0;

    background:#f8f9fc;

}

.services .container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.card{

    background:#fff;

    padding:40px 30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

.card i{

    font-size:55px;

    color:#0d6efd;

    margin-bottom:25px;

}

.card h3{

    font-size:28px;

    color:#222;

    margin-bottom:15px;

}

.card p{

    color:#666;

    line-height:32px;

    font-size:17px;

    margin-bottom:25px;

}

.card a{

    color:#0d6efd;

    font-weight:700;

}

.card a:hover{

    text-decoration:underline;

}


/* ===================================
   WHY US
=================================== */

.why-us{

    padding:100px 0;

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-box{

    background:#f8f9fc;

    padding:35px;

    border-radius:15px;

    text-align:center;

    transition:.3s;

}

.why-box:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.why-box i{

    font-size:48px;

    color:#0d6efd;

    margin-bottom:20px;

}

.why-box h3{

    margin-bottom:15px;

    font-size:25px;

}

.why-box p{

    color:#666;

    line-height:30px;

}


/* ===================================
   CTA
=================================== */

.cta{

    background:#0d6efd;

    color:#fff;

    text-align:center;

    padding:90px 0;

}

.cta h2{

    font-size:40px;

    margin-bottom:20px;

}

.cta p{

    font-size:20px;

    margin-bottom:35px;

}

.cta .btn-primary{

    background:#fff;

    color:#0d6efd;

}

.cta .btn-primary:hover{

    background:#f3f3f3;

}


/* ===================================
   FOOTER
=================================== */

footer{

    background:#1b1b1b;

    color:#fff;

    padding:70px 0 20px;

}

.footer-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-about h3{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:28px;

    margin-bottom:20px;

}

.footer-about i{

    color:#0d6efd;

}

.footer-about p{

    color:#cfcfcf;

    line-height:32px;

}

.footer-links h4{

    margin-bottom:20px;

    font-size:22px;

}

.footer-links a{

    display:block;

    color:#cfcfcf;

    margin-bottom:12px;

    transition:.3s;

}

.footer-links a:hover{

    color:#0d6efd;

}

.copyright{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid #333;

    text-align:center;

    color:#999;

    font-size:15px;

}
/* ===================================
   RESPONSIVE
=================================== */

@media (max-width:992px){

.hero h1{

font-size:52px;
line-height:65px;

}

.hero p{

font-size:20px;

}

.services .container,
.why-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media (max-width:768px){

header{

position:fixed;
background:#111;
padding:15px 0;
box-shadow:0 5px 20px rgba(0,0,0,.2);

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo{

font-size:22px;

}

.logo span{

display:none;

}

.logo i{

font-size:30px;

}

.menu-toggle{

display:block;
z-index:1001;

}

#navbar{

position:absolute;

top:75px;

right:0;

width:100%;

background:#111;

display:none;

flex-direction:column;

align-items:center;

padding:20px 0;

gap:20px;

}

#navbar.show{

display:flex;

}

#navbar a{

margin:0;
padding:8px 0;

}

.hero{

height:auto;
padding:150px 0 80px;

}

.hero-content{

text-align:center;

}

.hero h1{

font-size:40px;
line-height:55px;

}

.hero p{

font-size:18px;
line-height:32px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

text-align:center;

}

.services{

padding:70px 0;

}

.services .container{

grid-template-columns:1fr;

}

.card{

padding:35px 25px;

}

.why-us{

padding:70px 0;

}

.why-grid{

grid-template-columns:1fr;

}

.cta{

padding:70px 0;

}

.cta h2{

font-size:30px;

}

.cta p{

font-size:18px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-about h3{

justify-content:center;

}

}

@media (max-width:480px){

.hero h1{

font-size:32px;
line-height:45px;

}

.hero p{

font-size:16px;
line-height:30px;

}

.section-title h2{

font-size:28px;

}

.card h3{

font-size:24px;

}

.cta h2{

font-size:26px;

}

.logo{

font-size:18px;

}

}
/* ===================================
   PAGE HEADER
=================================== */

.page-header{

    position:relative;
    height:50vh;
    background:url("../images/car1.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;

}

.page-content{

    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;

}

.page-content h1{

    font-size:50px;
    margin-bottom:20px;
    font-weight:800;

}

.page-content p{

    max-width:700px;
    margin:auto;
    line-height:36px;
    font-size:20px;

}


/* ===================================
   MAINTENANCE
=================================== */

.maintenance{

    padding:100px 0;
    background:#f8f9fc;

}

.maintenance-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.maintenance-card{

    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.maintenance-card:hover{

    transform:translateY(-8px);

}

.maintenance-card i{

    font-size:50px;
    color:#0d6efd;
    margin-bottom:20px;

}

.maintenance-card h3{

    font-size:24px;
    margin-bottom:15px;

}

.maintenance-card p{

    color:#666;
    line-height:30px;
    font-size:17px;

}


/* ===================================
   TIPS
=================================== */

.tips{

    padding:100px 0;
    background:#fff;

}

.tips-box{

    max-width:850px;
    margin:auto;
    background:#f8f9fc;
    border-radius:15px;
    padding:45px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.tips-box h2{

    text-align:center;
    margin-bottom:30px;
    font-size:34px;

}

.tips-box ul{

    margin-bottom:35px;

}

.tips-box li{

    margin-bottom:18px;
    font-size:19px;
    color:#444;

}

.tips-box .btn{

    display:block;
    width:260px;
    margin:25px auto 0;
    text-align:center;

}


/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

    .maintenance-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .page-header{

        height:40vh;

    }

    .page-content h1{

        font-size:36px;

    }

    .page-content p{

        font-size:17px;
        line-height:30px;

    }

    .maintenance{

        padding:70px 0;

    }

    .maintenance-grid{

        grid-template-columns:1fr;

    }

    .maintenance-card{

        padding:30px 25px;

    }

    .tips{

        padding:70px 0;

    }

    .tips-box{

        padding:30px 20px;

    }

    .tips-box h2{

        font-size:28px;

    }

    .tips-box li{

        font-size:17px;

    }

    .tips-box .btn{

        width:100%;

    }

}
/* ===================================
   CHECKLIST
=================================== */

.checklist{

    padding:100px 0;

    background:#f8f9fc;

}

.progress-box{

    background:#fff;

    border-radius:15px;

    padding:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    margin-bottom:35px;

}

.progress-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:15px;

    font-size:18px;

    font-weight:700;

}

.progress{

    width:100%;

    height:14px;

    background:#e4e4e4;

    border-radius:30px;

    overflow:hidden;

}

.progress-bar{

    width:0%;

    height:100%;

    background:#0d6efd;

    transition:.4s;

}

.checklist-box{

    background:#fff;

    border-radius:15px;

    padding:35px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.checklist-box label{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 10px;

    font-size:20px;

    border-bottom:1px solid #eee;

    cursor:pointer;

}

.checklist-box label:last-child{

    border:none;

}

.checklist-box input{

    width:22px;

    height:22px;

    accent-color:#0d6efd;

}

.check-buttons{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:20px;

}


/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

.checklist{

padding:70px 0;

}

.progress-info{

font-size:16px;

}

.checklist-box{

padding:25px;

}

.checklist-box label{

font-size:17px;

padding:15px 5px;

}

.check-buttons{

flex-direction:column;

}

.check-buttons .btn{

width:100%;

}

}
/* ===================================
   CONTACT
=================================== */

.contact{

    padding:100px 0;

    background:#f8f9fc;

}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.input-group{

    margin-bottom:25px;

}

.input-group label{

    display:block;

    margin-bottom:10px;

    font-weight:700;

}

.input-group input,
.input-group textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:17px;

    font-family:'Cairo',sans-serif;

    transition:.3s;

}

.input-group input:focus,
.input-group textarea:focus{

    border-color:#0d6efd;

    outline:none;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

.contact-info{

    padding:80px 0;

    background:#fff;

}

@media(max-width:768px){

.contact{

padding:70px 0;

}

.contact-form{

padding:25px;

}

}
/* ===================================
   PRIVACY
=================================== */

.privacy{

    padding:100px 0;

    background:#f8f9fc;

}

.privacy-box{

    max-width:950px;

    margin:auto;

    background:#fff;

    padding:45px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.privacy-box h2{

    margin-bottom:18px;

    margin-top:35px;

    color:#0d6efd;

    font-size:28px;

}

.privacy-box h2:first-child{

    margin-top:0;

}

.privacy-box p{

    color:#555;

    line-height:34px;

    font-size:18px;

}

@media(max-width:768px){

.privacy{

padding:70px 0;

}

.privacy-box{

padding:25px;

}

.privacy-box h2{

font-size:24px;

}

.privacy-box p{

font-size:16px;

line-height:30px;

}

}
/* ===================================
   TERMS
=================================== */

.terms{

    padding:100px 0;

    background:#ffffff;

}

.terms-box{

    max-width:950px;

    margin:auto;

    background:#f8f9fc;

    padding:45px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.terms-box h2{

    margin-top:35px;

    margin-bottom:18px;

    color:#0d6efd;

    font-size:28px;

}

.terms-box h2:first-child{

    margin-top:0;

}

.terms-box p{

    color:#555;

    line-height:34px;

    font-size:18px;

}

@media(max-width:768px){

.terms{

padding:70px 0;

}

.terms-box{

padding:25px;

}

.terms-box h2{

font-size:24px;

}

.terms-box p{

font-size:16px;

line-height:30px;

}

}