* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
}

.navbar {
    background: rgba(20, 20, 20, 0.95);
    padding: 15px 0;
}

.navbar-brand {
    color: #ffc107 !important;
}

.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.quote-box,
.bank-card,
.contact-info,
.contact-form {
    background: white;
    color: #222;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.section {
    padding: 90px 0;
}

.section h2 {
    font-weight: 800;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card i {
    font-size: 45px;
    color: #ffc107;
    margin-bottom: 20px;
}

.project-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-card div {
    padding: 25px;
}

.client-box {
    padding: 35px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    font-weight: 700;
    border: 1px solid #ddd;
}

.testimonial {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 18px;
    height: 100%;
}

.payment-section {
    background: #ffc107;
}

.payment-section ul {
    padding-left: 0;
    list-style: none;
}

.payment-section li {
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-section i {
    margin-right: 8px;
}

footer {
    background: #111;
    color: white;
    padding: 30px 0;
}

footer a {
    color: #ffc107;
    text-decoration: none;
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 999;
}

@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero {
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }
}
:root{
    --ccs-dark:#1d3a47;
    --ccs-dark-2:#132a35;
    --ccs-light:#f7f8f6;
    --ccs-gray:#e7eceb;
    --ccs-accent:#c9a45c;
    --ccs-text:#243943;
}

body{
    font-family:'Segoe UI', Arial, sans-serif;
    color:var(--ccs-text);
    background:var(--ccs-light);
}

.navbar-ccs{
    background:rgba(247,248,246,.96);
    box-shadow:0 8px 28px rgba(29,58,71,.16);
    padding:12px 0;
}

.logo-brand img{
    height:62px;
    max-width:260px;
    object-fit:contain;
}

.navbar-ccs .nav-link{
    color:var(--ccs-dark) !important;
    font-weight:700;
    margin-left:15px;
}

.navbar-ccs .nav-link:hover{
    color:var(--ccs-accent) !important;
}

.btn-menu{
    background:var(--ccs-dark);
    color:white !important;
    border-radius:30px;
    padding:9px 22px !important;
}

.btn-menu:hover{
    background:var(--ccs-accent);
    color:white !important;
}

.hero-ccs{
    background:
        radial-gradient(circle at top left, rgba(201,164,92,.18), transparent 35%),
        linear-gradient(135deg, #f7f8f6 0%, #e7eceb 100%);
    padding-top:90px;
    overflow:hidden;
}

.hero-logo-box{
    background:white;
    border:3px solid var(--ccs-dark);
    border-radius:28px;
    padding:18px 25px;
    display:inline-block;
    margin-bottom:28px;
    box-shadow:0 18px 40px rgba(29,58,71,.12);
}

.hero-logo-box img{
    height:105px;
    max-width:100%;
    object-fit:contain;
}

.hero-label{
    display:inline-block;
    color:var(--ccs-accent);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:14px;
}

.hero-ccs h1{
    font-size:3.8rem;
    line-height:1.05;
    font-weight:900;
    color:var(--ccs-dark);
    margin-bottom:22px;
}

.hero-ccs p{
    font-size:1.15rem;
    color:#52636b;
    max-width:650px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn-ccs-primary{
    background:var(--ccs-dark);
    color:white;
    border-radius:40px;
    padding:14px 30px;
    font-weight:800;
}

.btn-ccs-primary:hover{
    background:var(--ccs-accent);
    color:white;
}

.btn-ccs-outline{
    border:2px solid var(--ccs-dark);
    color:var(--ccs-dark);
    border-radius:40px;
    padding:12px 30px;
    font-weight:800;
}

.btn-ccs-outline:hover{
    background:var(--ccs-dark);
    color:white;
}

.hero-image-card{
    position:relative;
    border-radius:34px;
    overflow:hidden;
    border:5px solid white;
    box-shadow:0 28px 70px rgba(29,58,71,.25);
}

.hero-image-card img{
    width:100%;
    height:620px;
    object-fit:cover;
}

.hero-floating-card{
    position:absolute;
    left:28px;
    bottom:28px;
    background:rgba(19,42,53,.92);
    color:white;
    padding:22px 26px;
    border-radius:20px;
    border-left:6px solid var(--ccs-accent);
}

.hero-floating-card strong{
    display:block;
    font-size:1.2rem;
}

.hero-floating-card span{
    color:#d8e0df;
}

.section-title span,
.section-kicker,
.hero-badge{
    background:var(--ccs-dark);
    color:white;
}

.section-title h2{
    color:var(--ccs-dark);
}

.service-card i{
    background:var(--ccs-dark);
    color:white;
}

.service-card{
    border-top:5px solid var(--ccs-accent);
}

.stats-section{
    background:var(--ccs-dark);
}

.stat-box h3{
    color:var(--ccs-accent);
}

.payment-section{
    background:var(--ccs-dark);
    color:white;
}

.payment-section h2,
.payment-section p,
.payment-section li{
    color:white;
}

.bank-card{
    background:white;
    color:var(--ccs-dark);
}

footer{
    background:var(--ccs-dark-2);
}