:root {
    --dark-blue: #1A477B;
    --orange: #F58220;
    --light-blue: #5C9BD5;
    --white: #FFFFFF;
    --grey: #f4f7f6;
}

* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; background-color: var(--white); }

/* --- Navbar Refresh --- */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 90px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 87px;
    width: 180px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-links a:hover { color: var(--orange); }

.nav-btn {
    background: var(--orange);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* --- Content Styling --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(26, 71, 123, 0.7), rgba(26, 71, 123, 0.7)), 
                url('https://images.unsplash.com/photo-1521791136064-7986c2923216?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; }
.highlight-blue { color: var(--light-blue); }
.highlight-orange { color: var(--orange); }

.cta-main { 
    background: var(--orange); 
    color: white; 
    padding: 18px 45px; 
    text-decoration: none; 
    font-weight: 900; 
    border-radius: 50px; 
    margin-top: 40px;
    display: inline-block;
    transition: 0.3s; 
}

.services-section { padding: 80px 10%; background: var(--grey); text-align: center; }
.section-title { margin-bottom: 50px; font-size: 2.5rem; color: var(--dark-blue); font-weight: 900; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.quote-section { padding: 80px 5%; display: flex; justify-content: center; }
.form-wrapper { background: var(--dark-blue); color: white; display: flex; flex-wrap: wrap; border-radius: 20px; overflow: hidden; width: 100%; max-width: 1000px; }
.form-text, .main-form { padding: 50px; flex: 1; min-width: 350px; }
.main-form { background: white; display: flex; flex-direction: column; gap: 15px; }
.main-form input, .main-form select, .main-form textarea { padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
.main-form button { background: var(--orange); color: white; border: none; padding: 20px; font-weight: 900; cursor: pointer; border-radius: 5px; font-size: 1.1rem; }

.guarantee-badge { margin-top: 20px; display: inline-block; background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; border: 1px solid var(--orange); }
footer { background: #111; color: #666; text-align: center; padding: 40px; }

@media (max-width: 900px) {
    .nav-center { display: none; }
    .hero h1 { font-size: 2.2rem; }
}