/* =====================================================
RESET & GLOBALS
===================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,Segoe UI,Arial,sans-serif;
    background:#fff;
    color:#101827;
    line-height:1.7;
}

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

a{
    text-decoration:none;
    color:inherit;
}

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


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

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#0d5fb8;
    color:#fff;
}

.btn-primary:hover{
    background:#0a4c93;
}

.btn-light{
    background:#fff;
    color:#0d5fb8;
}

.btn-light:hover{
    transform:translateY(-2px);
}


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

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:20px;
    font-size:2.6rem;
}

.section-subtitle{
    text-align:center;
    color:#64748b;
    max-width:700px;
    margin:auto auto 60px;
}


/* =====================================================
HEADER & NAVIGATION
===================================================== */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 1px 15px rgba(0,0,0,.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    display:flex;
    align-items:center;
    gap:8px;
}

.logo img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center top;
}

.logo-divider{
    width:1px;
    height:35px;
    background:#dbe2ea;
}

.logo-text h2{
    font-size:1.35rem;
    line-height:1;
}

.logo-text span{
    color:#64748b;
    font-size:.85rem;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:#0d5fb8;
}


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

.hero{
    min-height:100vh;
    padding:140px 0 120px;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65)),
    url("images/hero.png");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.hero-content{
    max-width:750px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:25px;
    line-height:1.1;
}

.hero p{
    font-size:1.25rem;
    color:#e5e7eb;
}


/* =====================================================
STATS
===================================================== */

.stats{
    background:#fff;
    position:relative;
    z-index:5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stat-card h3{
    color:#0d5fb8;
    font-size:2rem;
}


/* =====================================================
FEATURES
===================================================== */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.feature-card{
    padding:35px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.feature-card h3{
    margin:20px 0 10px;
}

.feature-icon{
    width:65px;
    height:65px;
    border-radius:12px;
    background:#eaf3ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}


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

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    border:1px solid #e2e8f0;
    border-radius:15px;
    padding:30px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.service-card ul{
    margin-top:15px;
    padding-left:20px;
}

.service-card li{
    margin-bottom:8px;
}


/* =====================================================
PROJECT CAROUSEL
===================================================== */

.project-carousel{
    display:flex;
    align-items:center;
    gap:15px;
}

.project-window{
    overflow:hidden;
    width:100%;
}

.project-track{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.project-track::-webkit-scrollbar{
    display:none;
}

.project-image{
    flex:0 0 350px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
	text-align:center;
	margin-top:40px;
}

.project-track img{
	width:100%;
}

.project-image:hover{
    transform:scale(1.03);
}


/* =====================================================
REVIEWS CAROUSEL
===================================================== */

.reviews-slider{
    max-width:800px;
    margin:auto;
}

.review-carousel{
    display:flex;
    align-items:center;
    gap:15px;
}

.review-window{
    overflow:hidden;
    width:100%;
}

.review-track{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.review-track::-webkit-scrollbar{
    display:none;
}

.review-card{
    flex:0 0 350px;
    min-height:250px;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    text-align:center;
}

.stars{
    color:#fbbf24;
    font-size:1.3rem;
    margin-bottom:15px;
}

.review-card h4{
    margin-top:20px;
    color:#0d5fb8;
}

.carousel-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:white;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    cursor:pointer;
    font-size:1.3rem;
    transition:.3s;
}

.carousel-btn:hover{
    background:#0d5fb8;
    color:white;
}


/* =====================================================
ABOUT
===================================================== */

.about-preview{
    display:grid;
    gap:40px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.service-area-card{
    padding:35px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    position:sticky;
    top:120px;
}


/* =====================================================
ABOUT PREVIEW
===================================================== */

.review-preview{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:20px;
	margin:30px 0;
}

.review-preview > *{
	flex:1;
}

.mini-review{
	padding:20px;
	border-radius:12px;
	background:#f8fafc;
	border:1px solid #e2e8f0;
}

.about-content{
	display:grid;
	grid-template-columns:2fr 1fr;
}



/* =====================================================
VALUES
===================================================== */

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    text-align:center;
    padding:30px;
}


/* =====================================================
REVIEWS CAROUSEL
===================================================== */

.new-grid{
	display:grid;
	gap:25px;
}

.article{
	padding:30px;
	border:1px solid #e2e8f0;
	border-radius:15px;
	margin:10px;
}


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

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:14px;
    border:1px solid #e2e8f0;
    border-radius:10px;
    margin-bottom:15px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-box{
    padding:25px;
    border-radius:12px;
    background:#f8fafc;
}


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

.estimate-section{
    background:#0d5fb8;
    color:white;
    text-align:center;
}

.estimate-section h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.estimate-section p{
    max-width:700px;
    margin:0 auto 30px;
    color:#e5e7eb;
}


/* =====================================================
LIGHTBOX
===================================================== */

#lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    justify-content:center;
    align-items:center;
    gap:30px;
    z-index:9999;
}

#mediaContainer img,
#mediaContainer video{
    max-width:90vw;
    max-height:85vh;
    border-radius:15px;
}

#prevMedia,
#nextMedia{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    font-size:1.8rem;
    cursor:pointer;
}

#close-lightbox{
    position:absolute;
    top:20px;
    right:40px;
    color:white;
    font-size:3rem;
    cursor:pointer;
}

#mediaWrapper{
    text-align:center;
    max-width:90vw;
}

#mediaCaption{
    margin-top:20px;
    color:white;
    font-size:1.1rem;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.6;
}


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

footer{
    background:#101827;
    color:#fff;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:20px;
    color:#94a3b8;
}


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

@media(max-width:900px){

    .hero h1{
        font-size:2.8rem;
    }

    .stats-grid,
    .features,
    .services-grid,
    .values-grid,
    .about-grid,
    .about-preview,
    .contact-grid,
    .footer-grid,
    .review-preview{
        grid-template-columns:1fr;
    }

    .nav-links{
        display:none;
    }
}