/* ==========================================================================
   ACF Block: Hero
   ========================================================================== */

.acf-block-hero {
    position: relative;
    padding: 8rem 0 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: inherit;
    overflow: hidden;
}

.acf-block-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.acf-block-hero__bg--solid {
    background-color: #0c1527;
    /* Very dark blue matching design */
}

.acf-block-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.acf-block-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(12, 21, 39, 0.85);
    /* Dark blue overlay */
}

.acf-block-hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.acf-block-hero__content {
    max-width: 650px;
}

.acf-block-hero__subheadline-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.acf-block-hero__subheadline-line {
    width: 40px;
    height: 3px;
    background-color: #E0701F;
}

.acf-block-hero__subheadline {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E0701F;
}

.acf-block-hero__heading,
.acf-block-hero h1.acf-block-hero__heading {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
}

.acf-block-hero__paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 95%;
}

/* Buttons */
.acf-block-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.acf-block-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.acf-block-hero__btn--primary {
    background-color: #E0701F;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(224, 112, 31, 0.4);
}

.acf-block-hero__btn--primary:hover {
    background-color: #c55a13;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(224, 112, 31, 0.6);
    transform: translateY(-2px);
}

.acf-block-hero__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.acf-block-hero__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.acf-block-hero__btn-icon {
    display: flex;
    align-items: center;
}

.acf-block-hero__btn-icon--right {
    margin-left: 0.25rem;
}

/* Features Grid */
.acf-block-hero__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
}

.acf-block-hero__feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.acf-block-hero__feature-icon {
    width: 16px;
    height: 16px;
    color: #E0701F;
    flex-shrink: 0;
    margin-top: 3px;
}

.acf-block-hero__feature-text {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .acf-block-hero__features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .acf-block-hero {
        padding: 5rem 0 4rem 0;
        min-height: auto;
    }

    .acf-block-hero__heading,
    .acf-block-hero h1.acf-block-hero__heading {
        font-size: 2.5rem;
    }

    .acf-block-hero__actions {
        flex-direction: column;
    }

    .acf-block-hero__btn {
        width: 100%;
    }

    .acf-block-hero__features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}