body{
    font-family:Arial, Helvetica, sans-serif;
    color:#111827;
    background:#ffffff;
    margin: 0;
    padding: 0;
}

.top-bar{
    background:#111827;
    color:white;

    padding:12px 12%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:14px;
}

.background-text{
    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    font-size:12rem;
    font-weight:900;

    color:rgba(227,6,19,0.05);

    letter-spacing:15px;

    user-select:none;
    pointer-events:none;

    z-index:-1;

    white-space:nowrap;
}


/* NAVBAR */

header{
    position:sticky;
    top:0;
    background:white;
    z-index:1000;
    border-bottom:1px solid #eee;
}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 12%;
}

.logo img{
    width:120px;
}

.nav-links{
    display:flex;
    gap:36px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-size:18px;
    transition:.3s;
}

.nav-links a:hover{
    color:#e30613;
}

.nav-links a.active{

    color:#d50018;

    background:#ffe9ea;

    padding:12px 18px;

    border-radius:10px;

}

.call-btn{
    

    background:#e30613;
    color:white;

    text-decoration:none;

    padding:14px 25px;

    border-radius:40px;

    font-weight:600;
}

.contact-hero{

    padding:100px 12%;

    background:linear-gradient(to right,#fff6f5,#ffffff);

}

.contact-hero h1{

    font-size:50px;

    margin:20px 0;

}

.contact-hero p{

    font-size:22px;

    color:#555;

}

.section-badge{

    background:#ffe9ea;

    color:#d50018;

    padding:10px 18px;

    border-radius:30px;

    font-weight:700;

}

/* GRID */

.contact-info{

    padding:80px 12%;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* CARD */

.contact-card{

    border:1px solid #eee;

    border-radius:20px;

    padding:35px;

    transition:.3s;

    background:white;

}

.contact-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-card i{

    font-size:40px;

    color:#d50018;

    margin-bottom:20px;

}

.whatsapp{

    color:#22c55e !important;

}

.contact-card h3{

    font-size:34px;

    margin-bottom:15px;

}

.contact-card p{

    color:#555;

    line-height:1.7;

    margin-bottom:15px;

}

.contact-card a{

    display:block;

    color:black;

    text-decoration:none;

    font-weight:700;

    margin-top:12px;

}

/* INSPECTION */

.inspection-box{

    background:#d50018;

    color:white;

    border-radius:20px;

    padding:35px;

}

.inspection-box h2{

    font-size:42px;

    margin-bottom:20px;

}

.inspection-box p{

    line-height:1.8;

    margin-bottom:30px;

}

.inspection-btn{

    display:inline-block;

    background:white;

    color:#d50018;

    text-decoration:none;

    padding:15px 30px;

    border-radius:40px;

    font-weight:700;

}

.emergency{

    color:#d50018;

    font-weight:700;

}

/* RESPONSIVE */

@media(max-width:992px){

.contact-grid{

grid-template-columns:1fr;

}

.contact-hero h1{

font-size:45px;

}

}

footer{

    background:#f8f8f8;

    margin-top:10px;
}

.footer-grid{

    padding:80px 12%;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:80px;
}

.footer-grid img{

    width:150px;
    margin-bottom:10px;
}

.footer-grid p{

    display:block;

    text-decoration:none;

    color:#444;

    line-height:1;
}

.footer-grid a{
     display:block;

    text-decoration:none;

    color:#444;

    line-height:1.8;
}

.footer-grid h3{

    margin-bottom:6px;
}

.copyright{

    text-align:center;

    padding:25px;

    border-top:1px solid #ddd;
}

.floating-whatsapp,
.floating-call, .instagram{

    position:fixed;
    right:20px;

    width:65px;
    height:65px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    text-decoration:none;

    font-size:28px;

    z-index:999;
}

.floating-whatsapp{

    bottom:110px;
    background:#25d366;
    
}

.floating-call{

    bottom:30px;
    background:#e30613;
}

.instagram{

    bottom:190px;
    background:#E4405F;
}