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

:root {
    --primary: #DE3723;
    --secondary: #2B2B2B;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --text: #333333;
    --border: #E0E0E0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Roboto', sans-serif; 
    color: var(--text); 
    background-color: #F2F2F2;
    line-height: 1.7; 
    font-size: 17px;
    padding-bottom: 80px;
}
h1, h2, h3, h4 { font-family: 'Jost', sans-serif; color: var(--secondary); margin-bottom: 15px; }
h2 { font-size: 2.2rem; margin-top: 0; }
a { text-decoration: none; transition: 0.3s; }

/* HEADER */
header { 
    background: var(--secondary); 
    padding: 15px 0; 
    position: sticky; top: 0; z-index: 1000; 
    border-bottom: 3px solid var(--primary);
}
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.header-row { display: flex; justify-content: space-between; align-items: center; }
.logo { 
    font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--white); 
    letter-spacing: -0.5px;
}
.header-contact { 
    color: var(--white); border: 2px solid var(--primary); padding: 8px 20px; 
    border-radius: 4px; font-weight: 700; font-size: 0.9rem;
}
.header-contact:hover { background: var(--primary); }

/* HERO */
.hero-container { 
    background: var(--white); padding: 60px 0; border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}
.hero-container .container { display: flex; align-items: center; gap: 40px; }
.hero-content { flex: 1; }
.hero-image { flex: 1; display: none; }
.hero-image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
@media(min-width: 768px) { .hero-image { display: block; } }

.hero-content h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; color: #222; }
.hero-content p { font-size: 1.2rem; color: #666; margin-bottom: 30px; }

.hero-search { background: #F5F5F5; padding: 20px; border-radius: 6px; border: 1px solid #DDD; }
.search-tag { font-weight: 700; font-size: 0.9rem; color: var(--primary); display: block; margin-bottom: 10px; }
.input-wrap { display: flex; gap: 10px; }
.input-wrap input { flex: 1; padding: 12px; border: 1px solid #CCC; border-radius: 4px; font-size: 1rem; }
.btn-primary { 
    background: var(--primary); color: var(--white); padding: 12px 30px; 
    border-radius: 4px; font-weight: 700; text-align: center; display: inline-block;
}
.btn-primary:hover { background: #C02E1D; }

/* CONTENT BLOCKS */
.content-block { 
    background: var(--white); padding: 50px; margin-bottom: 30px; 
    border-radius: 8px; border: 1px solid #E5E5E5; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.bg-grey { background: #F9F9F9; }

.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 30px; }
.brand-item { background: var(--white); padding: 25px; border-radius: 6px; border: 1px solid #EEE; }
.brand-item h3 { color: var(--primary); font-size: 1.4rem; }

.process-list { list-style: none; padding: 0; }
.process-list li { 
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23DE3723"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left 5px; 
    padding-left: 30px; margin-bottom: 15px; 
}

.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.faq-card { background: #F2F2F2; padding: 20px; border-radius: 6px; }
.faq-card h4 { color: var(--secondary); font-size: 1.1rem; }

.faq-list .faq-row { margin-bottom: 20px; border-bottom: 1px solid #EEE; padding-bottom: 20px; }
.faq-row strong { display: block; color: var(--primary); font-size: 1.1rem; margin-bottom: 5px; }

/* FOOTER */
footer { background: var(--secondary); color: #AAA; padding: 50px 0; text-align: center; font-size: 0.9rem; }
footer a { color: var(--white); }
.disclaimer { max-width: 800px; margin: 20px auto 0; font-size: 0.8rem; line-height: 1.4; }

/* FLOATING BAR */
.float-bar { 
    position: fixed; bottom: 0; left: 0; width: 100%; 
    background: var(--white); display: flex; z-index: 2000; 
    border-top: 4px solid var(--primary); box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}
.float-btn { flex: 1; padding: 18px; text-align: center; color: var(--secondary); font-weight: 700; font-size: 1rem; text-transform: uppercase; }
.fb-wa { background: #25D366; color: white; }

/* DIRECTORY */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.loc-btn { display: block; background: var(--white); padding: 12px; text-align: center; border-radius: 4px; font-size: 0.9rem; color: #555; border: 1px solid #DDD; }
.loc-btn:hover { border-color: var(--primary); color: var(--primary); }

@media(max-width: 768px) { 
    .hero-content h1 { font-size: 2.2rem; } 
    .content-block { padding: 30px; }
}
