/* =====================================
   MoTow Premium Website
   styles-layout.css
   Layout Structure
===================================== */


/* =========================
   HEADER
========================= */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(8,8,8,.88);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

}


.header-inner{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}


.logo img{

    height:55px;

}



.nav{

    display:flex;

    gap:35px;

}


.nav a{

    color:white;

    font-weight:600;

    transition:.3s;

}


.nav a:hover{

    color:#aaa;

}



.header-call{

    border:1px solid white;

    padding:12px 25px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}


.header-call:hover{

    background:white;

    color:black;

}



.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:30px;

}



/* =========================
   HERO
========================= */


.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    background:

    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.8)
    ),

    url("../images/hero.jpg")
    center/cover no-repeat;

}



.hero-overlay{

    position:absolute;

    inset:0;

}



.hero-content{

    position:relative;

    z-index:2;

    padding-top:80px;

    max-width:800px;

}



.hero-tag{

    display:inline-block;

    border:1px solid rgba(255,255,255,.3);

    padding:8px 18px;

    border-radius:50px;

    margin-bottom:25px;

    font-size:.85rem;

    letter-spacing:2px;

}



.hero p{

    font-size:1.2rem;

    max-width:650px;

    margin:30px 0;

}



.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}



.hero-trust{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:45px;

}


.hero-trust span{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    padding:12px 20px;

    border-radius:50px;

    font-size:.9rem;

}



/* =========================
   SERVICES
========================= */


.cards{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}



/* =========================
   SERVICE AREAS
========================= */


.area-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;

    margin-top:50px;

}


.area-grid div{

    background:#181818;

    padding:30px;

    text-align:center;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    font-size:1.2rem;

    font-weight:700;

}



/* =========================
   GALLERY
========================= */


.gallery{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;

    margin-top:50px;

}


.gallery img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:18px;

}



/* =========================
   REVIEWS
========================= */


.reviews{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;

    margin-top:50px;

}


.review{

    background:#181818;

    padding:35px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    font-size:1.05rem;

}


.review::first-line{

    letter-spacing:4px;

}



/* =========================
   CONTACT
========================= */


.contact-form{

    max-width:700px;

    margin:50px auto 0;

    display:flex;

    flex-direction:column;

    gap:20px;

}



/* =========================
   FOOTER
========================= */


.footer{

    background:#000;

    text-align:center;

    padding:60px 0;

    border-top:1px solid rgba(255,255,255,.1);

}


.footer h3{

    font-size:2rem;

    margin-bottom:15px;

}


.footer p{

    margin:8px;

}



/* =========================
   END LAYOUT
========================= */