/* =========================================
   BOOKING PAGE HEADER
   ========================================= */
.bl-booking-header-wrap {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
    font-family: 'Delight', sans-serif !important;
}

/* --- The H1 & Marker --- */
.bl-booking-h1 {
    font-size: 48px;
    font-weight: 800;
    color: #5e6167;
    line-height: 1.2;
    margin: 0 0 25px 0;
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* The Text Itself */
.bl-h1-text {
    position: relative;
    z-index: 2;
    display: inline-block;
}

/* The Salmon Underline - under all three words */
.bl-h1-marker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 15px;
    background: #C9CBCD;
    z-index: -2;
}

/* --- The Arrow Circle --- */
.bl-arrow-circle {
    width: 126px;
    height: 126px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: #F2F2F2;
    /* Directional shadow - barely visible top, stronger spreading bottom */
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2), 
                0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

/* Arrow SVG styling */
.bl-arrow-circle svg {
    width: 70px;
    height: 70px;
    display: block;
}

/* Arrow SVG styling */
.bl-arrow-circle svg {
    display: block;
}

/* --- Mobile Tweak --- */
@media (max-width: 480px) {
    .bl-booking-h1 {
        font-size: 32px;
    }
    
    .bl-h1-text {
        white-space: nowrap; /* Keep text on one line if possible */
    }
    
    .bl-h1-marker {
        height: 12px;
    }
    
    .bl-arrow-circle {
        width: 60px;
        height: 60px;
        box-shadow: 0 8px 28px -4px rgba(0, 0, 0, 0.2), 
                    0 1px 2px 0 rgba(235, 235, 235, 0.05);
    }
    
    .bl-arrow-circle svg {
        width: 45px;
        height: 45px;
    }
}