:root{
    --ink:#0b1220;
    --muted:#5a667a;
    --brand:#e15601;
    --brand2:#f68602;
    --radius: 18px;
}
html { scroll-behavior: auto !important; } /* no smooth scroll */
body{
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    overflow-x: hidden;
}
* { word-wrap: break-word; }

/* Announcement */
.announce{
    background: black;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #eaf0ff;
}
.announce a{ color:#eaf0ff; text-decoration: none; font-weight: 600; }
.announce a:hover{ text-decoration: underline; }

/* Navbar */
.navbar{
    background: rgba(10,18,34,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar .nav-link{
    color: rgba(255,255,255,.78);
    font-weight: 600;
}
.navbar .nav-link:hover{ color: #fff; }
.brand-badge{
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-weight:800;
    box-shadow: 0 10px 30px rgba(47,107,255,.25);
}
.nav-cta{
    border: 1px solid rgba(255,255,255,.18);
    color:#fff;
}
.nav-cta:hover{ border-color: rgba(255,255,255,.35); color:#fff; }

/* Hero with 1920x900 image + dark overlay */
.hero{
    color:#fff;
    position: relative;
    background-image:
            linear-gradient(0deg, rgba(6,12,24,.72), rgba(6,12,24,.62)),
            url("../images/house5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-kicker{
    display:inline-flex; gap:.5rem; align-items:center;
    padding: .35rem .7rem;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    font-weight: 600;
    color: rgba(255,255,255,.92);
}
.hero h1{ letter-spacing:-0.03em; }
.hero p.lead{ color: rgba(255,255,255,.82); }

.hero-bullets li{
    color: rgba(255,255,255,.85);
    margin-bottom: .5rem;
}
.hero-bullets i{ color: #b8c9ff; }

/* Estimate form */
.estimate{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.98);
    border-radius: 22px;
    box-shadow: 0 16px 60px rgba(0,0,0,.28);
}
.estimate .form-control{
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
}
.estimate .form-control::placeholder{ color: rgba(255,255,255,.58); }
.estimate label{ color: rgba(255,255,255,.82); font-weight:600; font-size:.9rem; }
.estimate .form-control:focus{
    border-color: rgba(47,107,255,.75);
    box-shadow: 0 0 0 .2rem rgba(47,107,255,.18);
    background: rgba(255,255,255,.07);
    color:#fff;
}

/* Sections */
.section{ padding: 72px 0; }
.section-title{ letter-spacing:-0.02em; font-weight:800; }
.subtle{ color: var(--muted);
    font-weight:100;
}

.soft-panel{
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--radius);
}

.btn-brand{
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    border: 0;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 35px rgba(47,107,255,.20);
}
.btn-brand:hover{ filter: brightness(1.03); color:#fff; }
.btn-outline-light2{
    border: 1px solid rgba(255,255,255,.22);
    color:#fff;
    font-weight: 700;
}
.btn-outline-light2:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.32);
    color:#fff;
}

/* Service cards w/ images */
.service-card{
    border: 1px solid rgba(10,18,34,.10);
    border-radius: var(--radius);
    transition: transform .15s ease, box-shadow .15s ease;
    height: 100%;
    background: #fff;
    overflow: hidden;
}
.service-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(15,23,42,.10);
}
.card-img-top{
    height: 180px;
    object-fit: cover;
}
.icon-pill{
    width: 44px; height: 44px;
    border-radius: 14px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(47,107,255,.10);
    color: var(--brand);
    flex: 0 0 auto;
}

/* Mini gallery strip */
.mini-gallery img{
    height: 120px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.08);
}

/* CTA band with image */
.cta-band{
    background: radial-gradient(900px 380px at 10% 0%, rgba(47,107,255,.18), transparent 60%),
    radial-gradient(700px 320px at 80% 30%, rgba(0,194,255,.14), transparent 60%),
    linear-gradient(180deg, #d84b00, #071021);
    color:#fff;
    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.cta-band .subtle{ color: rgba(255,255,255,.75); }
.cta-img{
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 16px 60px rgba(0,0,0,.30);
}
.cta-img img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display:block;
}

/* Keyword block */
.keyword-cloud{
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.7;
}
.keyword-cloud code{
    background: rgba(47,107,255,.08);
    border: 1px solid rgba(47,107,255,.14);
    padding: .1rem .35rem;
    border-radius: .5rem;
    color: #e15601;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
}

/* Footer */
footer{
    background: #070d18;
    color: rgba(255,255,255,.82);
    border-top: 1px solid rgba(255,255,255,.08);
}
footer a{ color: rgba(255,255,255,.88); text-decoration: none; }
footer a:hover{ text-decoration: underline; }

/* Footer Quick Links */
.footer-title{
    color: rgba(255,255,255,.92);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: .75rem;
}
.footer-links{
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer-links li{
    margin-bottom: .55rem;
}
.footer-links a{
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-weight: 600;
}
.footer-links a:hover{
    color: rgba(255,255,255,.95);
    text-decoration: underline;
}


/* Partners */
.partners-section{
    background: #fff;
    border-bottom: 1px solid rgba(15,23,42,.06);
}

.partners-wrap{
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.98));
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 22px;
    padding: 1.25rem 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.partners-label{
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    text-align: center;
    color: #0b1220;
}

.partners-slider{
    position: relative;
    overflow: hidden;
    width: 100%;
}

.partners-slider::before,
.partners-slider::after{
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before{
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.partners-slider::after{
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

.partners-track{
    display: flex;
    align-items: center;
    width: max-content;
    animation: partnersScroll 28s linear infinite;
}

.partners-wrap:hover .partners-track{
    animation-play-state: paused;
}

.partner-item{
    flex: 0 0 auto;
    width: 160px;
    height: 90px;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 18px;
    padding: 14px 18px;
}

.partner-item img{
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;        /* remove grayscale */
    opacity: 1;          /* full visibility */
    transition: .25s ease;
}
.partner-item:hover img{
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
}

@keyframes partnersScroll{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(calc(-50% - 9px));
    }
}

@media (max-width: 991.98px){
    .partner-item{
        width: 140px;
        height: 82px;
        margin-right: 14px;
    }

    .partner-item img{
        max-height: 46px;
    }
}

@media (max-width: 575.98px){
    .partners-wrap{
        padding: 1rem .75rem;
    }

    .partners-label{
        font-size: .95rem;
    }

    .partner-item{
        width: 120px;
        height: 76px;
        margin-right: 12px;
        padding: 10px 14px;
        border-radius: 14px;
    }

    .partner-item img{
        max-height: 40px;
    }

    .partners-slider::before,
    .partners-slider::after{
        width: 36px;
    }
}

.btn-outline-primary {
    color: #e15601;
    border-color: #e15601;
}
.btn-outline-primary:hover {
    background-color: #7e3000;
    border-color: red;
}


/* Reviews */
.reviews-section{
    background:
            radial-gradient(700px 280px at 10% 0%, rgba(47,107,255,.08), transparent 60%),
            radial-gradient(700px 280px at 90% 20%, rgba(255,174,0,.10), transparent 60%),
            #fff;
}

.review-card{
    position: relative;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 14px 38px rgba(15,23,42,.06);
    overflow: hidden;
    transition: .25s ease;
}

.review-card::before{
    content: "“";
    position: absolute;
    right: 18px;
    top: 4px;
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    color: rgba(47,107,255,.08);
    pointer-events: none;
}

.review-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(15,23,42,.10);
}

.featured-review{
    border-color: rgba(47,107,255,.20);
    background: linear-gradient(180deg, rgba(47,107,255,.04), #fff 55%);
}

.review-top{
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-avatar{
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff8c00, #ffb347);
    color: #fff;
    font-weight: 900;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255,140,0,.25);
}

.review-name{
    font-weight: 800;
    color: #0b1220;
    line-height: 1.1;
}

.review-stars{
    color: #f5a400;
    font-size: .9rem;
    letter-spacing: .03rem;
    margin-top: .2rem;
}

.review-text{
    color: #5a667a;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.reviews-cta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(47,107,255,.09), rgba(0,194,255,.07));
    border: 1px solid rgba(47,107,255,.14);
    border-radius: 22px;
    padding: 1.5rem;
}

@media (max-width: 767.98px){
    .reviews-cta{
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-cta .btn{
        width: 100%;
    }
}

.announce-social a{
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: .85rem;
    transition: .25s ease;
}

.announce-social a:hover{
    background: linear-gradient(135deg, #ff8c00, #ffb347);
    color: #fff;
    transform: translateY(-1px);
}