.hero-subtitle {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.hero-subtitle::before {
    content: '' !important;
    width: 28px !important;
    height: 1px !important;
    background: rgba(255,255,255,0.55) !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.hero-subtitle::after {
    content: '' !important;
    width: 28px !important;
    height: 1px !important;
    background: rgba(255,255,255,0.55) !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

 .hero-subtitle .elementor-heading-title {
        color: rgba(255,255,255,0.55)!important;
    }

/* ===== HERO FILTER ===== */
.gariful-hero-filter {
    display: flex;
    align-items: flex-end;
    gap: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 14px 18px;
    max-width: 780px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 10px auto 40px;
}
.ght-item {
        text-align: center;
}

.ghf-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
}

.ghf-field:first-child {
    padding-left: 0;
}

.ghf-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
    align-self: center;
}

.ghf-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ghf-select {
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif!important;
    font-size: 16px;
    font-weight: 500;
    color: #444!important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding: 0 28px 0 0;
    background-repeat: no-repeat;
    background-position: right 8px center;
     text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

.ghf-select option {
    background: #13172B;
    color: #fff;
}

.ghf-btn {
    flex-shrink: 0;
    background: #FA5026;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.3px;
    margin-left: 14px;
    transition: opacity 0.2s;
    height: 51px;
}

.ghf-btn:hover {
        background: #FA5026!important;
        color: white!important;
}

@media (max-width: 768px) {
    .gariful-hero-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        max-width: 100%;
    }
    .ghf-field {
        padding: 0;
    }
    .ghf-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .ghf-btn {
        margin-left: 0;
        padding: 14px;
        text-align: center;
        font-size: 15px;
    }
    .hero-subtitle::before {
        display: none!important;
    }
    .hero-subtitle::after {
        display: none!important;
    }
    .gariful-hero-filter {
        margin-bottom: 10px;
    }
}