:root{
    --navy:#07111f;
    --navy2:#0e1d31;
    --gold:#f4b400;
    --gold2:#d99b00;
    --light:#f5f7fa;
    --text:#1d2733;
    --muted:#64748b;
    --white:#ffffff;
}

*{
    box-sizing:border-box;
}

body{
    font-family:Inter, Arial, sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

a{
    transition:.3s;
}

img{
    max-width:100%;
}

.navbar{
    background:rgba(7,17,31,.96);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    padding:14px 0;
    transition:.35s;
}

.navbar.scrolled{
    padding:8px 0;
    background:#07111f !important;
}

.navbar-brand{
    max-width:360px;
    color:#fff !important;
    font-weight:900;
}

.navbar .nav-link{
    color:#e2e8f0 !important;
    font-weight:600;
    margin:0 6px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
    color:var(--gold) !important;
}

.btn-gold{
    background:var(--gold);
    color:#111;
    font-weight:800;
    border-radius:999px;
    padding:12px 26px;
    border:1px solid var(--gold);
}

.btn-gold:hover{
    background:var(--gold2);
    border-color:var(--gold2);
    color:#111;
    transform:translateY(-2px);
}

.btn-outline-gold{
    border:1px solid var(--gold);
    color:var(--gold);
    border-radius:999px;
    padding:12px 26px;
    font-weight:800;
}

.btn-outline-gold:hover{
    background:var(--gold);
    color:#111;
}

.btn-outline-dark{
    border-radius:999px;
    padding:12px 26px;
    font-weight:800;
}

.hero-slider{
    position:relative;
}

.hero-slide{
    min-height:95vh;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(7,17,31,.94),rgba(7,17,31,.70),rgba(7,17,31,.35));
}

.min-vh-90{
    min-height:90vh;
}

.hero-title{
    font-size:clamp(42px,6vw,85px);
    font-weight:950;
    color:#fff;
    line-height:1.05;
    margin-bottom:22px;
}

.hero-subtitle{
    font-size:1.25rem;
    color:#f1f5f9;
    max-width:720px;
    margin-bottom:35px;
    line-height:1.7;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.carousel-control-prev,
.carousel-control-next{
    width:6%;
}

.hero{
    min-height:92vh;
    background:linear-gradient(rgba(7,17,31,.72),rgba(7,17,31,.72)),url('/assets/images/hero.jpg') center/cover;
    display:flex;
    align-items:center;
    color:#fff;
}

.hero h1{
    font-size:clamp(38px,6vw,76px);
    font-weight:950;
}

.section{
    padding:95px 0;
}

.section-title{
    font-weight:950;
    color:var(--navy);
    line-height:1.15;
    margin-bottom:20px;
}

.section-subtitle{
    max-width:720px;
    margin:0 auto;
    color:var(--muted);
    line-height:1.8;
}

.section-heading{
    margin-bottom:60px;
}

.section-text{
    color:var(--muted);
    line-height:1.85;
    font-size:1.03rem;
}

.eyebrow{
    display:inline-block;
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.82rem;
    margin-bottom:12px;
}

.muted-bg{
    background:var(--light);
}

.dark{
    background:var(--navy);
    color:white;
}

.trust-bar{
    background:#fff;
    padding:42px 0;
    box-shadow:0 12px 35px rgba(7,17,31,.06);
    position:relative;
    z-index:2;
}

.trust-bar h3{
    color:var(--navy);
    font-size:42px;
    font-weight:950;
    margin-bottom:5px;
}

.trust-bar p{
    margin:0;
    color:var(--muted);
    font-weight:700;
}

.about-image-wrap{
    position:relative;
}

.about-image-wrap img{
    width:100%;
    min-height:420px;
    object-fit:cover;
}

.experience-box{
    position:absolute;
    bottom:22px;
    right:22px;
    background:var(--gold);
    padding:22px 26px;
    border-radius:20px;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    color:#111;
}

.experience-box strong{
    display:block;
    font-size:28px;
    font-weight:950;
}

.experience-box span{
    font-weight:700;
}

.feature-mini{
    background:#fff;
    border-radius:14px;
    padding:15px 18px;
    box-shadow:0 8px 25px rgba(7,17,31,.07);
    font-weight:700;
}

.feature-mini i{
    color:var(--gold);
    margin-right:10px;
}

.card-premium{
    border:0;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 16px 45px rgba(7,17,31,.10);
    height:100%;
    transition:.35s ease;
    background:#fff;
}

.card-premium:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 60px rgba(7,17,31,.16);
}

.icon-box{
    width:68px;
    height:68px;
    background:var(--navy);
    color:var(--gold);
    display:grid;
    place-items:center;
    border-radius:20px;
    font-size:28px;
}

.service-card{
    background:#fff;
    padding:38px;
    border-radius:24px;
    box-shadow:0 16px 45px rgba(7,17,31,.08);
    transition:.35s ease;
    border:1px solid rgba(7,17,31,.05);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 26px 65px rgba(7,17,31,.14);
}

.service-card h4{
    margin:22px 0 15px;
    font-weight:900;
    color:var(--navy);
}

.service-card p{
    color:var(--muted);
    line-height:1.8;
}

.link-arrow{
    color:var(--navy);
    text-decoration:none;
    font-weight:900;
}

.link-arrow i{
    margin-left:6px;
    transition:.3s;
}

.link-arrow:hover{
    color:var(--gold);
}

.link-arrow:hover i{
    transform:translateX(5px);
}

.why-section{
    background:#fff;
}

.why-list{
    margin-top:30px;
}

.why-list div{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    font-weight:800;
    color:var(--navy);
}

.why-list i{
    color:var(--gold);
    font-size:22px;
    width:28px;
}

.project-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 16px 45px rgba(7,17,31,.09);
    transition:.35s ease;
    border:1px solid rgba(7,17,31,.05);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 26px 65px rgba(7,17,31,.15);
}

.project-img-wrap{
    overflow:hidden;
    background:#ddd;
}

.project-img-wrap img,
.project-img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.55s ease;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-content{
    padding:30px;
}

.project-content h4{
    font-weight:900;
    margin-bottom:14px;
    color:var(--navy);
}

.project-content p{
    color:var(--muted);
    line-height:1.75;
}

.testimonials-section{
    background:#fff;
}

.testimonial-card{
    background:#fff;
    padding:38px;
    border-radius:24px;
    box-shadow:0 14px 42px rgba(7,17,31,.08);
    border:1px solid rgba(7,17,31,.05);
}

.stars{
    color:var(--gold);
    margin-bottom:18px;
}

.testimonial-card p{
    color:var(--muted);
    line-height:1.85;
    font-style:italic;
}

.testimonial-card h5{
    margin-top:22px;
    margin-bottom:3px;
    font-weight:900;
    color:var(--navy);
}

.testimonial-card span{
    color:var(--muted);
    font-size:.95rem;
}

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 14px 42px rgba(7,17,31,.08);
    transition:.35s ease;
    border:1px solid rgba(7,17,31,.05);
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-content{
    padding:28px;
}

.blog-date{
    color:var(--gold);
    font-size:.9rem;
    font-weight:900;
}

.blog-content h4{
    margin:12px 0;
    font-weight:900;
    color:var(--navy);
}

.blog-content p{
    color:var(--muted);
    line-height:1.75;
}

.cta-section{
    background:var(--navy);
}

.cta-box{
    background:linear-gradient(135deg,var(--navy),var(--navy2));
    color:#fff;
    padding:82px 50px;
    border-radius:34px;
    box-shadow:0 25px 70px rgba(0,0,0,.20);
    position:relative;
    overflow:hidden;
}

.cta-box:before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(244,180,0,.12);
    border-radius:50%;
    top:-80px;
    right:-70px;
}

.cta-box h2{
    font-size:clamp(34px,5vw,56px);
    font-weight:950;
    margin-bottom:20px;
    position:relative;
}

.cta-box p{
    max-width:720px;
    margin:0 auto 32px;
    color:#cbd5e1;
    line-height:1.8;
    position:relative;
}

.cta-actions{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    position:relative;
}

.page-hero{
    padding:155px 0 90px;
    background:linear-gradient(rgba(7,17,31,.82),rgba(7,17,31,.82)),url('/assets/images/page-hero.jpg') center/cover;
    color:#fff;
}

.page-hero h1{
    font-weight:950;
    font-size:clamp(38px,5vw,62px);
}

.form-control,
.form-select{
    padding:14px 16px;
    border-radius:14px;
    border:1px solid #dbe3ee;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 .2rem rgba(244,180,0,.15);
}

.footer{
    background:#06101d;
    color:#cbd5e1;
    padding-top:70px;
}

.footer h5,
.footer h4{
    color:#fff;
    font-weight:900;
    margin-bottom:20px;
}

.footer a{
    display:block;
    color:#cbd5e1;
    text-decoration:none;
    margin:8px 0;
}

.footer a:hover{
    color:var(--gold);
    transform:translateX(4px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:40px;
    padding:22px 0;
    color:#94a3b8;
}

.float-call,
.float-wa,
#topBtn{
    position:fixed;
    z-index:99;
    border-radius:50%;
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(0,0,0,.22);
}

.float-call{
    right:18px;
    bottom:146px;
    background:#0d6efd;
    color:#fff;
}

.float-wa{
    right:18px;
    bottom:88px;
    background:#25d366;
    color:#fff;
}

#topBtn{
    right:18px;
    bottom:30px;
    border:0;
    background:var(--gold);
    color:#111;
    display:none;
}

.float-call:hover,
.float-wa:hover,
#topBtn:hover{
    transform:translateY(-4px);
}

.admin-sidebar{
    min-height:100vh;
    background:#07111f;
}

.admin-sidebar a{
    color:#cbd5e1;
    display:block;
    padding:12px 16px;
    text-decoration:none;
}

.admin-sidebar a:hover,
.admin-sidebar a.active{
    background:#0e1d31;
    color:#fff;
}

.table img{
    border-radius:10px;
    object-fit:cover;
}

.badge{
    padding:7px 10px;
    border-radius:999px;
}

@media(max-width:991px){
    .navbar-collapse{
        background:#07111f;
        padding:18px;
        border-radius:16px;
        margin-top:12px;
    }

    .hero-slide{
        min-height:86vh;
    }

    .min-vh-90{
        min-height:82vh;
    }

    .section{
        padding:70px 0;
    }

    .about-image-wrap img{
        min-height:auto;
    }
}

@media(max-width:768px){
    .hero-title{
        font-size:40px;
    }

    .hero-subtitle{
        font-size:1.05rem;
    }

    .hero-overlay{
        background:rgba(7,17,31,.86);
    }

    .cta-box{
        padding:55px 25px;
        border-radius:24px;
    }

    .trust-bar h3{
        font-size:32px;
    }

    .service-card,
    .testimonial-card{
        padding:28px;
    }

    .project-img-wrap img,
    .project-img{
        height:230px;
    }

    .experience-box{
        left:18px;
        right:18px;
        bottom:18px;
    }
}

@media(max-width:575px){
    .hero-actions,
    .cta-actions{
        flex-direction:column;
        align-items:flex-start;
    }

    .cta-actions{
        align-items:center;
    }

    .btn-gold,
    .btn-outline-gold,
    .btn-outline-dark{
        width:100%;
        text-align:center;
    }

    .navbar-brand{
        max-width:260px;
        font-size:1rem;
    }
}

.topbar{
    background:#030914;
    color:#cbd5e1;
    font-size:.9rem;
    padding:9px 0;
    position:relative;
    z-index:1040;
}

.topbar span,
.topbar a{
    color:#cbd5e1;
    text-decoration:none;
    margin-right:22px;
    font-weight:600;
}

.topbar i{
    color:var(--gold);
    margin-right:7px;
}

.main-navbar{
    top:38px;
}

.navbar.scrolled{
    top:0;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    max-width:420px;
}

.brand-mark{
    width:46px;
    height:46px;
    background:var(--gold);
    color:#111;
    border-radius:14px;
    display:grid;
    place-items:center;
    flex-shrink:0;
}

.brand-text{
    font-size:1.05rem;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.navbar .nav-link{
    position:relative;
}

.navbar .nav-link.active{
    color:var(--gold) !important;
}

@media(max-width:991px){
    .main-navbar{
        top:0;
    }

    .brand-text{
        font-size:.95rem;
    }
}

.footer .fab{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    color:#fff;
}

.footer .fab:hover{
    background:var(--gold);
    color:#111;
}

.footer p{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding:25px 0;
}

.footer-bottom a{
    display:inline;
    margin:0;
}