/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.99) 30%, rgba(255, 255, 255, 0) 100%), url(../../images/hero-housing.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 1rem;
}

.hero-text {
    max-width: 80%;
    margin: 0 auto;
    color: #21305C;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    border-radius: 9999px;
}

.hero-badge p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .text-primary {
    color: #209FCA !important;
}

.hero-logo-img {
    display: block;
    height: auto;
    width: 60%;
    max-width: 20rem;
}

.hero-title-subheading {
    display: block;
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 500;
    color: inherit;
    margin-top: 0.35rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: inherit;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

