/* ==========================================================
   RC DESIGN & BUILD — FINAL CLEAN STYLESHEET
   ========================================================== */


/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F7F7F5;
    color:#161616;
    overflow-x:hidden;
    line-height:1.7;
}

/* prevents navbar overlap cleanly */
body{
    padding-top:90px;
}

img{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}


/* ---------- VARIABLES ---------- */

:root{
    --dark:#101214;
    --dark2:#1A1D21;
    --light:#F7F7F5;
    --gold:#B68B3D;
    --grey:#6C7279;
    --border:#E5E5E5;
    --container:1280px;
}


/* ---------- GLOBAL ---------- */

.container{
    width:min(92%, var(--container));
    margin:auto;
}

section{
    padding:110px 0;
    scroll-margin-top:120px;
}

h1,h2,h3{
    font-family:'Manrope',sans-serif;
    font-weight:800;
    letter-spacing:-1px;
}

p{
    color:var(--grey);
}


/* ---------- NAVIGATION ---------- */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:28px 0;
    transition:.35s;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.75);
    border-bottom:1px solid rgba(182,139,61,.5);
    overflow:visible;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}


.navLinks{
    display:flex;
    gap:42px;
}

.navLinks a{
    position:relative;
    font-weight:500;
    transition:.25s;
}

.navLinks a:hover{
    color:var(--gold);
}

.navLinks a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.25s;
}

.navLinks a:hover::after{
    width:100%;
}

.navLinks a.active{

color:#B68B3D;

}

.navLinks a.active::after{

width:100%;

}
.menuToggle{
    display:none;
    background:none;
    border:none;
    font-size:2rem;
    cursor:pointer;
    color:var(--dark);
}

/* ---------- BUTTONS ---------- */

.quoteButton{
    background:var(--gold);
    color:white;
    padding:14px 26px;
    border-radius:100px;
    transition:.35s;
    font-weight:600;
}

.quoteButton:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    background:var(--dark);
    color:white;
    border-radius:100px;
    transition:.3s;
}

.primary:hover{
    transform:translateY(-3px);
}

.secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border:2px solid var(--dark);
    border-radius:100px;
    transition:.3s;
}

.secondary:hover{
    background:var(--dark);
    color:white;
}


/* ---------- HERO ---------- */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
}

.heroGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.eyebrow{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:5px;
    margin-bottom:20px;
    font-size:.85rem;
}

.hero h1{
    font-size:clamp(3rem,7vw,6rem);
    line-height:1;
    margin-bottom:28px;
}

.hero p{
    font-size:1.15rem;
    max-width:620px;
}

.heroButtons{
    display:flex;
    gap:20px;
    margin-top:45px;
}

.heroImage{
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 40px 90px rgba(0,0,0,.15);
}

.heroImage img{
    transition:.8s;
}

.heroImage:hover img{
    transform:scale(1.05);
}


/* ---------- INTRO ---------- */

.intro{
    background:white;
}

.sectionHeading{
    margin-bottom:70px;
}

.sectionHeading p{
    color:var(--gold);
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.sectionHeading h2{
    font-size:3rem;
    max-width:700px;
}

.introGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.introGrid h3{
    margin-bottom:16px;
    font-size:1.6rem;
}


/* ---------- PROJECTS ---------- */

.projects{
    background:#f2f2f2;
}

.projectGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.projectCard{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.projectCard img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
    transition:.6s;
}

.projectCard:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.projectCard:hover img{
    transform:scale(1.08);
}

.projectInfo{
    padding:28px;
}


/* ---------- STATS ---------- */

.stats{
    background:#101214;
    color:white;
}

.statsGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    gap:40px;
}

.counter{
    font-size:4rem;
    color:#B68B3D;
}

.stats p{
    color:#bfbfbf;
}


/* ---------- WHY US ---------- */

.whyGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.whyGrid div{
    padding:40px;
    border:1px solid #e5e5e5;
    transition:.35s;
    background:white;
}

.whyGrid div:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}


/* ---------- GALLERY ---------- */

.galleryGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.galleryGrid img{
    height:360px;
    object-fit:cover;
    border-radius:18px;
}

.galleryGrid img:hover{
    transform:scale(1.05);
}
@media(max-width:700px){

    .galleryGrid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .galleryGrid img{
        height:220px;
        object-fit:cover;
    }
}


/* ---------- TESTIMONIALS ---------- */

.testimonials{
    background:#101214;
    color:white;
    text-align:center;
}

.testimonialBox{
    max-width:800px;
    margin:auto;
    padding:40px;
}

#testimonialText{
    font-size:1.4rem;
    color:#ddd;
    margin-bottom:20px;
}

#testimonialName{
    color:#B68B3D;
}


/* ---------- CONTACT ---------- */

.contact{
    background:#f7f7f5;
}

.contactGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

input,textarea{
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:inherit;
}

textarea{
    min-height:140px;
    resize:none;
}

button{
    padding:14px;
    background:#101214;
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#B68B3D;
}


/* ---------- FOOTER ---------- */

footer{
    background:#0d0f11;
    padding:60px 0;
}

footer .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

footer p{
    color:#aaa;
}


/* ---------- SCROLL BAR ---------- */

.progressBar{
    position:fixed;
    top:0;
    left:0;
    height:4px;
    width:0%;
    background:#B68B3D;
    z-index:99999;
    transition:width .15s linear;
}


/* ---------- RESPONSIVE ---------- */

@media(max-width:1100px){

    .heroGrid{
        grid-template-columns:1fr;
    }

    .introGrid{
        grid-template-columns:1fr;
    }

    .statsGrid{
        grid-template-columns:1fr 1fr;
    }

    .whyGrid{
        grid-template-columns:1fr;
    }

    .contactGrid{
        grid-template-columns:1fr;
    }

    .menuToggle{
        display:block;
    }

    .quoteButton{
        display:none;
    }

    .navLinks{
        position:absolute;
        top:calc(100% + 1px);
        left:0;
        width:100%;

        display:flex;
        flex-direction:column;
        align-items:center;
        gap:25px;

        padding:35px 0;

        background:white;

        border-top:1px solid rgba(182,139,61,.3);
        box-shadow:0 10px 25px rgba(0,0,0,.08);

        transform:translateY(-150%);
        opacity:0;
        pointer-events:none;

        transition:.35s;
    }

    .navLinks.open{
        transform:translateY(0);
        opacity:1;
        pointer-events:auto;
    }

}

@media(max-width:700px){

.hero h1{ font-size:3rem; }

.heroButtons{ flex-direction:column; }

section{ padding:80px 0; }

.statsGrid{ grid-template-columns:1fr; }

.projectGrid{

grid-template-columns:1fr;

}

.projectCard img{

height:300px;

}

}
/* ===========================
PAGE HERO
=========================== */

.pageHero{

padding:170px 0 110px;

background:#101214;

color:white;

text-align:center;

}

.pageHero h1{

font-size:4rem;

margin:20px 0;

}

.pageHero p{

color:#d0d0d0;

max-width:700px;

margin:auto;

}

.pageHero .eyebrow{

justify-content:center;

}
/* ===========================
FOOTER GRID
=========================== */

.footerGrid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.footerGrid h3,
.footerGrid h4{
    color:white;
    margin-bottom:20px;
}

.footerGrid ul{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footerGrid a{
    transition:.3s;
}

.footerGrid a:hover{
    color:var(--gold);
}

.footerGrid p{
    color:#bfbfbf;
    margin-bottom:10px;
}

@media(max-width:900px){

.footerGrid{
    grid-template-columns:1fr;
    gap:40px;
}

}
/* ---------- CTA ---------- */

.cta{
    background:#101214;
    color:white;
    padding:120px 0;
}

.ctaBox{
    text-align:center;
    max-width:700px;
    margin:auto;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.ctaBox h2{
    font-size:3rem;
}

.ctaBox p{
    color:#cfcfcf;
    font-size:1.1rem;
}
.footerGrid a{
    color:rgba(255,255,255,0.7);
    transition:0.25s;
}

.footerGrid a:hover{
    color:var(--gold);
}
.projectInfo{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;

    background:rgba(255,255,255,0.92);
    padding:20px 24px;

    backdrop-filter:blur(6px);
}
/* ---------- LOGO (FINAL CLEAN VERSION) ---------- */

.logo{

height:80px;

width:80px;

overflow:hidden;

display:flex;

align-items:center;

justify-content:center;

}

.logo img{

width:215%;

height:215%;

object-fit:cover;

}