:root {
    --primary: #FFD700;
    --secondary: #E31E24;
    --dark: #121212;
    --light: #f9f9f9;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; 
    line-height: 1.6; 
    background-color: var(--white); 
    color: #333; }
html { scroll-behavior: smooth; }
.container { max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; }
a { text-decoration: none; 
    transition: 0.3s; }
ul { list-style: none; }


.top-header { 
    background: var(--primary); 
    padding: 15px 0; 
    text-align: center; 
    border-bottom: 5px solid var(--secondary); 
}
.centered-logo { 
    height: 70px; 
}

.hero { 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/hero-bg.jpg'); 
    background-size: cover; 
    background-position: center;
    padding: 100px 0;
    color: var(--white);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.text-yellow { color: var(--primary); }
.badge { background: var(--secondary); 
    padding: 5px 12px; 
    border-radius: 4px; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; }


.contact-card { background: var(--white); padding: 35px; border-radius: 12px; color: var(--dark); box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
.contact-card h3 { color: var(--secondary); margin-bottom: 5px; }
.contact-card p { margin-bottom: 20px; font-size: 0.9rem; opacity: 0.8; }
input, textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 6px; outline: none; }
.btn-main { width: 100%; padding: 15px; background: var(--secondary); color: var(--white); border: none; font-weight: bold; cursor: pointer; border-radius: 6px; transition: 0.3s; }
.btn-main:hover { background: var(--dark); }


.what-we-do { padding: 80px 0; text-align: center; }
.section-header { margin-bottom: 50px; }
.underline { width: 60px; height: 4px; background: var(--secondary); margin: 15px auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.service-box { padding: 40px; background: var(--light); border-radius: 10px; transition: 0.3s; border-bottom: 4px solid transparent; }
.service-box:hover { transform: translateY(-10px); border-color: var(--secondary); } 
.service-box i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }


.custom-icon {
    height: 50px; 
    margin-bottom: 20px;
    object-fit: contain;
}

.info-banner { background: var(--secondary); padding: 60px 0; color: var(--white); }
.info-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.btn-outline { border: 2px solid var(--white); padding: 12px 25px; color: var(--white); font-weight: bold; border-radius: 5px; background: transparent; transition: 0.3s; }
.btn-outline:hover { background: var(--white); color: var(--secondary); }


.brands { padding: 60px 0; text-align: center; }
.brand-slider { display: flex; justify-content: space-around; flex-wrap: wrap; align-items: center; filter: grayscale(100%); opacity: 0.5; margin-top: 30px; }
.brand-slider img { height: 35px; margin: 20px; }


.footer { background: var(--dark); color: var(--white); padding: 70px 0 20px; border-top: 5px solid var(--secondary); } 
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--primary); margin-bottom: 20px; }
.footer p, .footer a { color: #bbb; margin-bottom: 10px; display: block; }
.footer a:hover { color: var(--secondary); } 
.footer-logo { height: 60px; margin-bottom: 20px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.8rem; }


@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .info-flex { justify-content: center; text-align: center; }
}


.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; box-shadow: 0 10px 25px rgba(0,0,0,0.3); z-index: 1000; }