/* Home Page Specific Styles */


.container {
    /* position: relative; */
    overflow: hidden;
}

.hero {
    background-color: var(--color-navy);
    /* Reduced opacity of overlay to 0.4 to make image more visible */
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.4)), url('../../media/chicago-skyline.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 70vh;
    /* Fixed height to include background but allow scrolling to next section */
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.hero .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 6vh;
    /* Push H1 down from the very top */
}

.hero-content {
    max-width: 1200px;
    z-index: 2;
    position: relative;
    padding: 0 2rem;
}

.hero h1 {
    color: white;
    font-size: 4.5rem;
    /* Larger impact */
    margin-bottom: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--color-slate);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.hero-bg-pattern {
    display: none;
}

/* Extracted Inline Styles */

.why-us-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.advantage-card {
    background-color: white;
    padding: 2rem;
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.advantage-list {
    list-style: disc;
    padding-left: 1.5rem;
    line-height: 2;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 1.3rem;
}

/* Dark mode overrides for extracted classes */
body.dark-mode .advantage-card {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

@media only screen and (max-width: 700px) {
    .hero {
        min-height: auto;
        height: 60vh;
    }

    .hero .container {
        padding-top: 6vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.3rem;
        text-align: left;
    }
}