@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root{
    --dark:#102f3c;
    --dark2:#071b24;
    --gold:#d7a84b;
    --gold2:#f3ce75;
    --soft:#f6f3ec;
    --text:#44515a;
    --white:#ffffff;
}

*{
    font-family:'Montserrat',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f7f6f2;
    color:var(--text);
    overflow-x:hidden;
}

.navbar-ccs{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(15px);
    box-shadow:0 10px 35px rgba(16,47,60,.10);
    padding:12px 0;
}

.logo-brand img{
    height:52px;
}

.nav-link{
    color:var(--dark)!important;
    font-weight:800;
    margin-left:20px;
    font-size:15px;
}

.nav-link:hover{
    color:var(--gold)!important;
}

.btn-menu{
    background:var(--dark);
    color:white!important;
    border-radius:40px;
    padding:12px 26px!important;
    box-shadow:0 12px 25px rgba(16,47,60,.22);
}

.btn-menu:hover{
    background:var(--gold);
    color:var(--dark)!important;
}

.hero-ccs{
    min-height:100vh;
    position:relative;
    padding-top:95px;
    background:
        linear-gradient(120deg,rgba(7,27,36,.92),rgba(16,47,60,.76)),
        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=90');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.hero-ccs::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(215,168,75,.20);
    top:-160px;
    left:-120px;
    filter:blur(20px);
}

.hero-ccs::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    bottom:-120px;
    right:-100px;
    filter:blur(10px);
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    color:white;
    font-weight:800;
    margin-bottom:28px;
    backdrop-filter:blur(10px);
}

.hero-badge i{
    color:var(--gold2);
}

.hero-ccs h1{
    color:white;
    font-size:clamp(42px,5vw,76px);
    line-height:1.05;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:24px;
}

.hero-ccs p{
    color:rgba(255,255,255,.86);
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:32px;
}

.btn-ccs-primary{
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:var(--dark);
    border-radius:45px;
    padding:15px 34px;
    font-weight:900;
    border:none;
    box-shadow:0 18px 35px rgba(215,168,75,.28);
}

.btn-ccs-primary:hover{
    background:white;
    color:var(--dark);
}

.btn-ccs-outline{
    border:2px solid rgba(255,255,255,.85);
    color:white;
    border-radius:45px;
    padding:15px 34px;
    font-weight:900;
}

.btn-ccs-outline:hover{
    background:white;
    color:var(--dark);
}

.hero-mini-stats{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:45px;
}

.hero-mini-stats div{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:18px 22px;
    min-width:145px;
}

.hero-mini-stats strong{
    display:block;
    color:var(--gold2);
    font-size:30px;
    font-weight:900;
}

.hero-mini-stats span{
    color:rgba(255,255,255,.85);
    font-size:13px;
    font-weight:600;
}

.hero-image-card{
    position:relative;
    border-radius:36px;
    padding:10px;
    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(12px);
    box-shadow:0 35px 90px rgba(0,0,0,.38);
    transform:rotate(1.2deg);
}

.hero-image-card img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:28px;
    filter:saturate(1.08) contrast(1.05);
}

.hero-floating-card{
    position:absolute;
    left:40px;
    bottom:40px;
    background:rgba(7,27,36,.92);
    color:white;
    border-left:6px solid var(--gold);
    padding:22px 26px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 22px 45px rgba(0,0,0,.35);
}

.hero-floating-card i{
    font-size:34px;
    color:var(--gold2);
}

.hero-floating-card strong{
    display:block;
    font-size:20px;
    font-weight:900;
}

.hero-floating-card span{
    font-size:14px;
    color:rgba(255,255,255,.82);
}

.stats-section{
    margin-top:-55px;
    position:relative;
    z-index:5;
}

.stat-box{
    background:white;
    padding:32px 20px;
    border-radius:26px;
    box-shadow:0 25px 60px rgba(16,47,60,.15);
    border:1px solid rgba(16,47,60,.06);
}

.stat-box h3{
    color:var(--gold);
    font-size:42px;
    font-weight:900;
}

.stat-box p{
    margin:0;
    font-weight:800;
    color:var(--dark);
}

.section{
    padding:105px 0;
}

.bg-soft{
    background:var(--soft);
}

.section-title{
    text-align:center;
    max-width:780px;
    margin:0 auto 60px;
}

.section-title span,
.section-kicker{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-weight:900;
}

.section-title h2,
.why-section h2{
    color:var(--dark);
    font-size:clamp(34px,4vw,54px);
    font-weight:900;
    margin-top:12px;
}

.section-title p{
    font-size:17px;
}

.service-card,
.testimonial-card,
.contact-form-box,
.contact-info{
    background:white;
    border-radius:28px;
    padding:36px;
    height:100%;
    border:1px solid rgba(16,47,60,.07);
    box-shadow:0 18px 45px rgba(16,47,60,.08);
    transition:.3s ease;
}

.service-card:hover,
.project-card:hover,
.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(16,47,60,.17);
}

.service-card i{
    width:68px;
    height:68px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:var(--dark);
    font-size:29px;
    border-radius:20px;
    margin-bottom:24px;
}

.service-card h5{
    color:var(--dark);
    font-weight:900;
    margin-bottom:12px;
}

.service-card p{
    line-height:1.7;
}

.why-section{
    background:
        radial-gradient(circle at top right,rgba(215,168,75,.18),transparent 35%),
        linear-gradient(135deg,var(--dark2),var(--dark));
    color:white;
    padding:105px 0;
}

.why-section h2{
    color:white;
}

.why-section p{
    color:rgba(255,255,255,.78);
    line-height:1.8;
}

.why-section img{
    border:8px solid rgba(255,255,255,.12);
    box-shadow:0 30px 70px rgba(0,0,0,.35)!important;
}

.check-item{
    display:flex;
    gap:18px;
    margin-top:24px;
}

.check-item i{
    background:var(--gold);
    color:var(--dark);
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.check-item h6{
    color:white;
    font-weight:900;
}

.project-card{
    background:white;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(16,47,60,.10);
    transition:.3s ease;
    height:100%;
}

.project-card img{
    width:100%;
    height:275px;
    object-fit:cover;
}

.project-info{
    padding:30px;
}

.project-info span{
    color:var(--gold);
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
}

.project-info h5{
    color:var(--dark);
    font-weight:900;
    margin-top:8px;
}

.clients-section{
    background:
        linear-gradient(rgba(7,27,36,.90),rgba(7,27,36,.90)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=90');
    background-size:cover;
    background-position:center;
}

.clients-section .section-title h2,
.clients-section .section-title p{
    color:white;
}

.client-logo{
    background:rgba(255,255,255,.12);
    color:white;
    padding:30px;
    border-radius:22px;
    font-weight:900;
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(10px);
}

.testimonial-card p{
    font-size:17px;
    line-height:1.8;
}

.testimonial-card strong{
    color:var(--dark);
    font-weight:900;
}

.contact-section{
    background:
        radial-gradient(circle at bottom left,rgba(215,168,75,.18),transparent 34%),
        #f8f7f3;
}

.contact-info h5{
    color:var(--dark);
    font-weight:900;
    margin-bottom:24px;
}

.contact-info i{
    color:var(--gold);
    margin-right:10px;
}

.form-control{
    border-radius:16px;
    border:1px solid #d9dedf;
    padding:15px 18px;
}

.form-control:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 .2rem rgba(215,168,75,.18);
}

.contact-form-box .btn-warning{
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    border:none;
    color:var(--dark);
    font-weight:900;
    border-radius:45px;
    padding:15px 34px;
}

footer{
    background:var(--dark2);
    color:white;
    padding:34px 0;
}

footer p{
    margin-bottom:8px;
}

footer a{
    color:var(--gold);
    text-decoration:none;
}

footer a:hover{
    color:white;
}

.whatsapp-btn{
    position:fixed;
    right:28px;
    bottom:28px;
    width:64px;
    height:64px;
    background:#25d366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    z-index:99;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    text-decoration:none;
}

.whatsapp-btn:hover{
    color:white;
    transform:scale(1.06);
}

@media(max-width:991px){
    .hero-ccs{
        padding-top:130px;
        text-align:center;
    }

    .hero-buttons,
    .hero-mini-stats{
        justify-content:center;
    }

    .hero-image-card{
        margin-top:35px;
        transform:none;
    }

    .hero-image-card img{
        height:430px;
    }

    .stats-section{
        margin-top:40px;
    }

    .nav-link{
        margin-left:0;
        margin-top:10px;
    }

    .btn-menu{
        display:inline-block;
        margin-top:10px;
    }
}

@media(max-width:575px){
    .section{
        padding:75px 0;
    }

    .hero-ccs h1{
        font-size:38px;
    }

    .hero-image-card img{
        height:320px;
    }

    .hero-floating-card{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .hero-mini-stats div{
        width:100%;
    }

    .logo-brand img{
        height:44px;
    }
}