.hero-section {
    background: url('/images/header.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -64px;
    padding-top: 64px;
    z-index: 100;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

 .hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

 .hero-title {
    color: #fff;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

 .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

 .search-bar {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 6px 6px 6px 12px;
    gap: 4px;
    flex-wrap: wrap;
    max-width: 700px;
    width: 100%;
    background: rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
}

     .search-bar .mud-input-control {
        margin: 0;
    }

     .search-bar .mud-input,
     .search-bar .mud-input-outlined .mud-input-outlined-border {
        background: transparent !important;
    }

 .search-select {
    min-width: 130px;
}

     .search-select .mud-input,
     .search-location .mud-input {
        color: #333 !important;
    }

     .search-select .mud-input-outlined .mud-input-outlined-border,
     .search-location .mud-input-outlined .mud-input-outlined-border {
        border-color: rgba(0, 0, 0, 0.15) !important;
    }

 .search-location {
    min-width: 160px;
    flex: 1;
}

 .search-btn {
    text-transform: none !important;
    font-weight: 600;
    margin: 0 0 0 5px;
    border-radius: 20px;
    padding: 8px 24px;
    min-height: 40px;
}

@media (max-width: 600px) {
     .search-bar {
        flex-direction: column;
        padding: 12px;
        gap: 8px;
    }

        .search-bar .mud-select {
            min-width: 100% !important;
            width: 100% !important;
            margin:0 0 5px 0;
        }

     .search-select .mud-input-control,
     .search-location .mud-input-control {
        width: 100% !important;
    }

     .search-btn {
        width: 100%;
        margin: 0;
    }
}

.cta-section {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.5) 0%, rgba(26, 26, 46, 0.9) 100%);
    border-top: 1px solid rgba(66, 133, 244, 0.15);
    border-bottom: 1px solid rgba(66, 133, 244, 0.15);
}

 .cta-image {
    max-height: 400px;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1000px) {
     .cta-image {
        max-height: 200px;
    }
}

 .cta-heading {
    font-weight: 700;
    line-height: 1.3;
}
