/* --- General Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* --- Header & Navigation --- */
.main-header {
    background: #fff;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.logo span { font-weight: 400; }

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.nav-links a.active, .nav-links a:hover {
    color: #f39237;
}

.contact-btn {
    background: #f39237;
    color: #fff !important;
    padding: 12px 25px;
}

/* --- HOME PAGE HERO --- */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('construction.jpg');
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    max-width: 800px;
}

/* --- CONTACT SECTION BACKGROUND --- */
/* This adds the image behind your "Contact Us Now" card */
.home-contact-section {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('construction.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card {
    background: white;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); /* Deeper shadow to stand out against the pic */
}

/* --- SERVICE PAGE HERO --- */
.service-hero {
    width: 100%;
    height: 60vh;
    background-color: #333;
}

.service-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- MESSAGE BAR --- */
.message-bar {
    background-color: #f39237;
    padding: 30px 20px; 
    text-align: center;
}

.message-bar h2 {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
}

.call-btn {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid white;
}

/* --- GLOBAL MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .logo {
        font-size: 28px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        margin-top: 15px;
    }

    .nav-links li {
        border-bottom: 1px solid #f9f9f9;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px;
        font-size: 14px;
    }

    .home-contact-section {
        padding: 60px 15px;
        background-attachment: scroll; /* Disables parallax on mobile for better performance */
    }

    .contact-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .form-group {
        width: 100% !important;
    }

    .full-width {
        grid-column: auto !important;
    }

    .hero h1 {
        font-size: 32px;
        padding: 0 10px;
    }
}