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

:root {
    --black: #000000;
    --mustard: #FFD700;
    --dark-grey: #111111;
    --light-grey: #F4F4F4;
    --white: #FFFFFF;
    --text: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Open Sans', sans-serif; 
    background-color: var(--white); 
    color: var(--text); 
    line-height: 1.6; 
    padding-bottom: 80px; 
    font-size: 16px;
}
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--black); }
a { text-decoration: none; transition: 0.3s; }

/* HEADER */
header { 
    background: var(--black); 
    padding: 15px 0; 
    position: sticky; top: 0; z-index: 1000; 
    border-bottom: 3px solid var(--mustard);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header-row { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.logo span { color: var(--mustard); }
.header-contact { color: var(--white); font-weight: 600; display: flex; align-items: center; gap: 10px; }

/* HERO SECTION (FORCE WHITE TEXT) */
.hero { 
    background-color: #000000 !important; 
    color: #FFFFFF !important; 
    padding: 80px 0; 
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--mustard);
}
.hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: center; }

/* Explicitly targeting hero children for visibility */
.hero-content h1 { font-size: 3.2rem; line-height: 1.2; margin-bottom: 20px; color: #FFFFFF !important; }
.hero-content p { font-size: 1.3rem; color: #E0E0E0 !important; margin-bottom: 30px; font-weight: 500; }
.hero-list { list-style: none; padding: 0; margin-bottom: 30px; color: #FFFFFF !important; }
.hero-list li { padding-left: 25px; position: relative; margin-bottom: 10px; color: var(--mustard); font-weight: 600; font-size: 1.1rem; }
.hero-list li::before { content: "✓"; position: absolute; left: 0; color: #FFFFFF; }

/* HERO FORM BOX */
.hero-form-box { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 4px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: center;
    border-top: 6px solid var(--mustard);
}
.hero-form-box h5 { color: var(--black); font-size: 1.6rem; margin-bottom: 10px; }
.hero-form-box p { color: #666; }
.btn-submit { 
    background: var(--mustard); color: var(--black); 
    width: 100%; padding: 15px; border: none; 
    font-weight: 800; font-family: 'Montserrat'; 
    text-transform: uppercase; cursor: pointer;
    font-size: 1.1rem; margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}
.btn-submit:hover { background: #e5c100; transform: translateY(-2px); }

/* SECTIONS */
.section-title { text-align: center; margin-bottom: 50px; margin-top: 60px; }
.section-title h2 { font-size: 2.5rem; }
.underline { width: 80px; height: 5px; background: var(--mustard); margin: 15px auto; }

/* SERVICE GRID */
.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 60px; }
.service-card { 
    background: var(--white); padding: 30px; 
    border-radius: 4px; text-align: left; 
    transition: 0.3s; border: 1px solid #eee;
    position: relative; overflow: hidden;
}
.service-card::after { content:''; position: absolute; bottom:0; left:0; width:0%; height:4px; background:var(--mustard); transition:0.3s; }
.service-card:hover::after { width:100%; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.service-card.active { background: var(--black); color: var(--white); border-color: var(--black); }
.service-card.active h3 { color: var(--mustard); }
.service-card.active p { color: #ccc; }
.service-card .icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }

/* TRUSTED BY STRIP */
.trusted-section { background: var(--light_grey); padding: 50px 0; text-align: center; margin: 60px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.trusted-section h3 { font-size: 1.4rem; margin-bottom: 30px; opacity: 0.7; letter-spacing: 1px; }
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.logo-strip span { font-weight: 800; color: #555; font-size: 1.1rem; background: #fff; padding: 15px 30px; border-radius: 4px; border: 1px solid #ddd; }

/* CONTENT SPLIT (WHY US) */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin: 80px 0; }
.content-split img { width: 100%; border-radius: 4px; box-shadow: 20px 20px 0px var(--black); }
.check-list { list-style: none; margin: 25px 0; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 12px; font-weight: 600; font-size: 1.1rem; }
.check-list li::before { content: "✔"; color: var(--mustard); position: absolute; left: 0; font-weight: 800; background: var(--black); width: 20px; height: 20px; border-radius: 50%; font-size: 12px; text-align: center; line-height: 20px; }

.stats-row { display: flex; gap: 50px; margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee; }
.stat strong { font-size: 2.5rem; color: var(--black); display: block; line-height: 1; }
.stat { color: #777; font-weight: 600; }

/* DIRECTORY */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; }
.loc-btn { 
    display: block; background: var(--white); padding: 15px; 
    text-align: center; border: 1px solid #ddd; 
    color: #555; font-size: 0.9rem; font-weight: 600;
}
.loc-btn:hover { background: var(--black); color: var(--mustard); border-color: var(--black); }

.amber-card { padding: 30px; border-radius: 8px; }
.bg-dark { background: #111; color: #fff; border: 1px solid #333; }

/* FOOTER */
footer { background: var(--black); color: #999; padding: 60px 0; margin-top: 80px; text-align: center; }
footer p { margin-bottom: 10px; }
footer a { color: var(--mustard); text-decoration: none; }

/* FLOATING BUTTONS */
.float-bar { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 2000; }
.float-btn { 
    background: var(--mustard); color: var(--black); 
    padding: 15px 30px; border-radius: 50px; 
    font-weight: 800; box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
    display: flex; align-items: center; justify-content: center; gap: 10px; 
    text-transform: uppercase; font-family: 'Montserrat';
}
.fb-wa { background: #25D366; color: #FFF; }

@media(max-width: 768px) { 
    .hero-grid { grid-template-columns: 1fr; } 
    .content-split { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero { padding: 50px 0; }
    .float-bar { bottom: 10px; right: 10px; left: 10px; flex-direction: row; }
    .float-btn { flex: 1; }
}
