/*=================================
RESET
=================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/*=================================
HEADER
=================================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#1F2937;
    box-shadow:0 6px 20px rgba(0,0,0,.15);
    z-index:1000;
}

.navbar{
    max-width:1300px;
    height:80px;
    margin:auto;
    padding:0 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/*=================================
TEXT LOGO
=================================*/

.logo{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.logo h2{
    font-size:34px;
    color:#F4B400;
    font-weight:700;
    line-height:1;
}

.logo span{
    color:#fff;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-top:4px;
}

/*=================================
NAV LINKS
=================================*/

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:.3s;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#F4B400;
    transition:.3s;
}

.nav-links a:hover{
    color:#F4B400;
}

.nav-links a:hover::after{
    width:100%;
}

/*=================================
BUTTON
=================================*/

.quote-btn{
    background:#F4B400;
    color:#111;
    padding:13px 28px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.quote-btn:hover{
    background:#FFD54A;
    transform:translateY(-2px);
}

/*=================================
HERO
=================================*/

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    margin-top:80px;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:1200px;
    height:100%;

    margin:auto;
    padding:0 40px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;

    color:#fff;
}

.hero-content h4{
    color:#F4B400;
    font-size:20px;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    max-width:650px;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:20px;
}

.primary-btn{
    background:#F4B400;
    color:#111;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.primary-btn:hover{
    background:#fff;
    transform:translateY(-3px);
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
}

.secondary-btn:hover{
    background:#F4B400;
    border-color:#F4B400;
    color:#111;
    transform:translateY(-3px);
}
/*=================================
STATISTICS
=================================*/

.stats{
    width:90%;
    max-width:1200px;
    margin:-70px auto 100px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    position:relative;
    z-index:10;
}

.stat-card{
    padding:40px 20px;
    text-align:center;
    transition:.3s;
}

.stat-card:hover{
    background:#F4B400;
}

.stat-card h2{
    font-size:48px;
    color:#F4B400;
    margin-bottom:10px;
    transition:.3s;
}

.stat-card:hover h2,
.stat-card:hover p{
    color:#fff;
}

.stat-card p{
    color:#666;
    font-size:17px;
}

/*=================================
ABOUT
=================================*/

.about{
    padding:100px 8%;
    background:#f8f8f8;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-images{
    position:relative;
}

.about-img1{
    width:100%;
    border-radius:15px;
}

.about-img2{
    width:65%;
    position:absolute;
    right:-25px;
    bottom:-35px;
    border:8px solid #fff;
    border-radius:15px;
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.about-content span{
    color:#F4B400;
    font-weight:700;
    letter-spacing:2px;
}

.about-content h2{
    font-size:42px;
    margin:20px 0;
}

.about-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
    font-weight:600;
}

/*=================================
SECTION TITLE
=================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#F4B400;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*=================================
SERVICES
=================================*/

.services{
    padding:100px 8%;
    background:#fff;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.service-card h3{
    padding:20px 20px 10px;
    font-size:24px;
}

.service-card p{
    padding:0 20px 25px;
    color:#666;
    line-height:1.8;
}

/*=================================
WHY CHOOSE US
=================================*/

.why-us{
    padding:100px 8%;
    background:#f8f8f8;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:15px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    background:#F4B400;
    transform:translateY(-10px);
}

.why-card i{
    font-size:50px;
    color:#F4B400;
    margin-bottom:20px;
    transition:.3s;
}

.why-card:hover i,
.why-card:hover h3,
.why-card:hover p{
    color:#fff;
}

.why-card p{
    color:#666;
    line-height:1.8;
}
/*=================================
GALLERY
=================================*/

.gallery{
    padding:100px 8%;
    background:#fff;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}

.gallery-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-info{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    background:linear-gradient(transparent,rgba(0,0,0,.9));
}

.gallery-info h3{
    color:#fff;
    font-size:28px;
}

/*=================================
TEAM
=================================*/

.team{
    padding:100px 8%;
    background:#f8f8f8;
}

.team-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.team-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.team-card h3{
    padding:22px;
    font-size:24px;
    color:#222;
}

/*=================================
REVIEWS
=================================*/

.reviews{
    padding:100px 8%;
    background:#fff;
}

.reviews-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.review-card{
    background:#f8f8f8;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #F4B400;
    margin:0 auto 20px;
}

.review-card h3{
    margin-bottom:10px;
}

.stars{
    color:#F4B400;
    font-size:22px;
    margin-bottom:15px;
}

.review-card p{
    color:#666;
    line-height:1.8;
}
/*=================================
CONTACT
=================================*/

.contact{
    padding:100px 8%;
    background:#f8f8f8;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:50px;
}

.contact-info img{
    width:100%;
    border-radius:15px;
    margin-bottom:25px;
}

.contact-info h3{
    font-size:30px;
    margin-bottom:15px;
}

.contact-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.info{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
    font-size:17px;
}

.info i{
    color:#F4B400;
    font-size:22px;
}

.social-icons,
.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a,
.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#F4B400;
    color:#111;
    border-radius:50%;
    transition:.3s;
}

.social-icons a:hover,
.footer-social a:hover{
    background:#111;
    color:#fff;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:16px;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/*=================================
FOOTER
=================================*/

.footer{
    background:#111;
    color:#fff;
    padding:80px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-box h3{
    color:#F4B400;
    margin-bottom:20px;
}

.footer-box p,
.footer-box li,
.footer-box a{
    color:#bbb;
    line-height:1.9;
}

.footer-box a:hover{
    color:#F4B400;
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
}

.footer-bottom p{
    color:#bbb;
}

/*=================================
TABLET
=================================*/

@media(max-width:992px){

    .nav-links{
        display:none;
    }

    .hero-content h1{
        font-size:48px;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .services-container,
    .team-container,
    .reviews-container,
    .why-container{
        grid-template-columns:repeat(2,1fr);
    }

    .about-container,
    .contact-container,
    .gallery-container{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }
}

/*=================================
MOBILE
=================================*/

@media(max-width:768px){

    .navbar{
        padding:0 20px;
        height:75px;
    }

    .logo h2{
        font-size:28px;
    }

    .logo span{
        font-size:11px;
        letter-spacing:2px;
    }

    .quote-btn{
        padding:10px 18px;
        font-size:14px;
    }

    .hero{
        margin-top:75px;
    }

    .hero-content{
        text-align:center;
        align-items:center;
        padding:0 20px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-btns{
        flex-direction:column;
        width:100%;
    }

    .hero-btns a{
        width:100%;
        text-align:center;
    }

    .stats,
    .services-container,
    .team-container,
    .reviews-container,
    .why-container,
    .footer-container{
        grid-template-columns:1fr;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .section-title h2,
    .about-content h2{
        font-size:32px;
    }

    .contact-form{
        padding:25px;
    }
}
/* Mobile Menu */

.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:fixed;
        top:75px;
        right:-100%;
        width:260px;
        height:100vh;
        background:#1F2937;
        display:flex;
        flex-direction:column;
        padding:40px 25px;
        gap:25px;
        transition:.4s;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links a{
        color:#fff;
        font-size:18px;
    }
}
#menuBtn,
#closeMenu{
    display:none;
    font-size:28px;
    cursor:pointer;
}


/* Mobile */
@media(max-width:768px){

.nav-links{

    position:fixed;
    top:0;
    right:-100%;
    width:250px;
    height:100vh;
    background:#111;
    display:flex;
    flex-direction:column;
    padding-top:80px;
    transition:0.4s;
}


.nav-links.active{
    right:0;
}


.nav-links li{
    margin:20px;
}


.nav-links a{
    color:white;
}


#menuBtn{
    display:block;
}


#closeMenu{
    display:block;
    position:absolute;
    top:25px;
    right:25px;
    color:white;
}


.quote-btn{
    display:none;
}

}
#menuBtn,
#closeMenu{
    display:none;
    font-size:28px;
    cursor:pointer;
}


/* Mobile */
@media(max-width:768px){

    #menuBtn{
        display:block;
    }

    #closeMenu{
        display:none;
        position:absolute;
        top:25px;
        right:25px;
        color:white;
    }


    .nav-links.active ~ #closeMenu{
        display:block;
    }

}
/*======================
    ABOUT HERO
=======================*/

.about-hero{

    height:60vh;
    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("../images/about/about1.png");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    color:white;

}


.about-hero-content h1{

    font-size:45px;
    margin-bottom:15px;

}


.about-hero-content p{

    font-size:18px;

}



/*======================
 COMPANY ABOUT
=======================*/


.company-about{

    padding:80px 8%;

}


.company-container{

    display:flex;
    align-items:center;
    gap:50px;

}


.company-image{

    flex:1;

}


.company-image img{

    width:100%;
    border-radius:10px;

}



.company-content{

    flex:1;

}


.company-content span,
.section-title span{

    color:#d89b00;
    font-weight:600;

}


.company-content h2{

    font-size:35px;
    margin:15px 0;

}


.company-content p{

    color:#666;
    line-height:1.8;

}


.about-points div{

    margin:12px 0;
    font-weight:500;

}



/*======================
 MISSION VISION
=======================*/


.mission-vision{

    padding:80px 8%;
    background:#f7f7f7;

}


.section-title{

    text-align:center;
    margin-bottom:50px;

}


.section-title h2{

    font-size:35px;

}


.mv-container{

    display:flex;
    gap:30px;

}


.mv-card{

    flex:1;
    background:white;
    padding:35px;
    text-align:center;
    border-radius:10px;

}


.mv-card i{

    font-size:40px;
    color:#d89b00;

}



/*======================
 CORE VALUES
=======================*/


.core-values{

    padding:80px 8%;

}


.values-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}


.value-card{

    padding:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    border-radius:10px;

}


.value-card i{

    font-size:35px;
    color:#d89b00;

}



/*======================
 COMPANY STATS
=======================*/


.company-stats{

    padding:70px 8%;
    background:#111;
    color:white;

}


.stats-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}


.stats-box{

    text-align:center;

}


.stats-box i{

    font-size:35px;
    color:#d89b00;

}


.stats-box h2{

    font-size:40px;

}
/* Header spacing fix */

.about-hero{
    padding-top:100px;
    box-sizing:border-box;
}
header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
}


.about-hero{
    margin-top:80px;
}
/*======================
    SERVICES HERO
=======================*/

.services-hero{

    height:60vh;
    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("../images/services/commercial.png");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;

}


.services-hero-content h1{

    font-size:45px;
    margin-bottom:15px;

}


.services-hero-content p{

    font-size:18px;

}




/*======================
    SERVICES PAGE
=======================*/

.services-page{

    padding:80px 8%;

}


.services-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}


.service-card{

    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);

    transition:.3s;

}


.service-card:hover{

    transform:translateY(-10px);

}


.service-card img{

    width:100%;
    height:220px;
    object-fit:cover;

}


.service-card h3{

    padding:15px 20px 5px;

}


.service-card p{

    padding:0 20px 25px;
    color:#666;
    line-height:1.7;

}



/*======================
 DETAILED SERVICES
=======================*/


.service-details{

    padding:80px 8%;
    background:#f7f7f7;

}


.details-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}


.detail-box{

    background:white;
    padding:35px;
    text-align:center;
    border-radius:10px;

}


.detail-box i{

    font-size:40px;
    color:#d89b00;

}


.detail-box p{

    color:#666;
    line-height:1.7;

}




/*======================
 SERVICES WHY
=======================*/


.services-why{

    padding:80px 8%;

}


.why-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}


.why-card{

    text-align:center;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    border-radius:10px;

}


.why-card i{

    font-size:35px;
    color:#d89b00;

}


.why-card p{

    color:#666;

}
/* FIX FIXED NAVBAR OVERLAP */

body{
    padding-top:80px;
}


header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}
/*======================
    PROJECTS HERO
=======================*/

.projects-hero{

    height:60vh;

    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("../images/gallery/houses.png");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;

}


.projects-hero-content h1{

    font-size:45px;
    margin-bottom:15px;

}


.projects-hero-content p{

    font-size:18px;

}




/*======================
    PROJECTS PAGE
=======================*/

.projects-page{

    padding:80px 8%;

}


.projects-container{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}



.project-card{

    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);

    transition:.3s;

}


.project-card:hover{

    transform:translateY(-10px);

}


.project-card img{

    width:100%;
    height:300px;
    object-fit:cover;

}


.project-info{

    padding:25px;

}


.project-info h3{

    margin-bottom:10px;

}


.project-info p{

    color:#666;
    line-height:1.7;

}




/*======================
 PROJECT HIGHLIGHTS
=======================*/


.project-highlights{

    padding:80px 8%;
    background:#f7f7f7;

}


.highlights-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}


.highlight-box{

    background:white;
    text-align:center;
    padding:35px;
    border-radius:10px;

}


.highlight-box i{

    font-size:40px;
    color:#d89b00;

}


.highlight-box h3{

    font-size:35px;
    margin:15px 0;

}


.highlight-box p{

    color:#666;

}
/*======================
    TEAM HERO
=======================*/

.team-hero{

    height:60vh;

    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("../images/team/site-manager.png");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;

}


.team-hero-content h1{

    font-size:45px;
    margin-bottom:15px;

}


.team-hero-content p{

    font-size:18px;

}




/*======================
    TEAM PAGE
=======================*/

.team-page{

    padding:80px 8%;

}


.team-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



.team-card{

    background:white;
    text-align:center;
    padding-bottom:25px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);

    transition:.3s;

}


.team-card:hover{

    transform:translateY(-10px);

}


.team-card img{

    width:100%;
    height:280px;
    object-fit:cover;

}


.team-card h3{

    margin:20px 0 10px;

}


.team-card p{

    padding:0 20px;
    color:#666;
    line-height:1.7;

}




/*======================
 TEAM EXPERTISE
=======================*/


.team-expertise{

    padding:80px 8%;
    background:#f7f7f7;

}


.expertise-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}


.expertise-box{

    background:white;
    text-align:center;
    padding:35px;
    border-radius:10px;

}


.expertise-box i{

    font-size:40px;
    color:#d89b00;

}


.expertise-box p{

    color:#666;
    line-height:1.7;

}
/*======================
    REVIEWS HERO
=======================*/

.reviews-hero{

    height:60vh;

    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("../images/reviews/client1.png");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;

}


.reviews-hero-content h1{

    font-size:45px;
    margin-bottom:15px;

}


.reviews-hero-content p{

    font-size:18px;

}



/*======================
    REVIEWS PAGE
=======================*/

.reviews-page{

    padding:80px 8%;

}


.reviews-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}


.review-card{

    background:white;
    padding:30px;
    text-align:center;
    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,.1);

    transition:.3s;

}


.review-card:hover{

    transform:translateY(-10px);

}


.review-card img{

    width:90px;
    height:90px;

    border-radius:50%;
    object-fit:cover;

}


.review-card h3{

    margin:15px 0;

}


.stars{

    color:#d89b00;
    font-size:22px;
    margin-bottom:15px;

}


.review-card p{

    color:#666;
    line-height:1.7;

}



/*======================
 REVIEW STATS
=======================*/

.review-stats{

    padding:80px 8%;
    background:#f7f7f7;

}


.review-stats-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}


.review-stat-box{

    background:white;
    text-align:center;
    padding:35px;
    border-radius:10px;

}


.review-stat-box i{

    font-size:40px;
    color:#d89b00;

}


.review-stat-box h3{

    font-size:35px;
    margin:15px 0;

}


.review-stat-box p{

    color:#666;

}
/*======================
    CONTACT HERO
=======================*/

.contact-hero{

    height:60vh;

    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("../images/office-building.png");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;

}


.contact-hero-content h1{

    font-size:45px;
    margin-bottom:15px;

}


.contact-hero-content p{

    font-size:18px;

}



/*======================
    CONTACT PAGE
=======================*/

.contact-page{

    padding:80px 8%;

}


.contact-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

}



/* Contact Info */

.contact-info img{

    width:100%;
    border-radius:10px;

}


.contact-info h3{

    font-size:28px;
    margin:20px 0 10px;

}


.contact-info p{

    color:#666;
    line-height:1.7;

}


.info{

    display:flex;
    align-items:center;
    gap:15px;
    margin:15px 0;

}


.info i{

    color:#d89b00;
    font-size:22px;

}



/* Contact Form */

.contact-form{

    background:#f7f7f7;
    padding:35px;
    border-radius:10px;

}


.contact-form h2{

    margin-bottom:25px;

}


.contact-form input,
.contact-form textarea{

    width:100%;
    padding:15px;
    margin-bottom:15px;

    border:1px solid #ddd;
    border-radius:5px;

    font-family:inherit;

}


.contact-form textarea{

    resize:none;

}



/*======================
 MAP & SOCIAL
=======================*/

.contact-extra{

    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

}


.map-box iframe{

    border-radius:10px;

}


.social-box{

    display:flex;
    flex-direction:column;
    justify-content:center;

}


.social-icons{

    display:flex;
    gap:15px;
    margin-top:20px;

}


.social-icons a{

    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#111;
    color:white;

    border-radius:50%;

}
/*======================
    ADMIN PANEL
=======================*/

.admin-hero{
    background:#111;
    color:#fff;
    text-align:center;
    padding:100px 8%;
}

.admin-messages{
    padding:80px 8%;
}

.message-card{
    background:#fff;
    border-radius:10px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.message-card h3{
    margin-bottom:15px;
}

.message-card p{
    margin:8px 0;
}

.message-card button{
    margin-top:15px;
    padding:10px 20px;
    border:none;
    background:#d62828;
    color:#fff;
    border-radius:5px;
    cursor:pointer;
}
/*======================
LOGIN PAGE
=======================*/

.login-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f5f5;
}

.login-box{
    width:400px;
    background:#fff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.login-box h2{
    text-align:center;
    margin-bottom:25px;
}

.login-box input{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
}

.login-box button{
    width:100%;
}