#gform_fields_47 {
    gap: 15px;
}

#gform_submit_button_47 {
    display: inline-block;
    background-color: #e18633;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-end;
}


/* Screen reader only text - hidden visually but available to assistive technologies */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.golf-floating-help-popup {
    position: fixed;
    right: 10px;
    bottom: 55px;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 72px;
    height: 72px;
}

.golf-floating-help-popup[open] {
    right: -5px;
    bottom: 40px;
}

.golf-floating-help-popup > summary {
    list-style: none;
}

.golf-floating-help-popup > summary::-webkit-details-marker {
    display: none;
}

.golf-floating-help-popup__trigger {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    cursor: pointer;
    background: #e18633;
    box-shadow: 0 18px 45px rgba(65, 84, 100, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.golf-floating-help-popup__trigger:hover,
.golf-floating-help-popup__trigger:focus {
    background: #d87925;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 52px rgba(65, 84, 100, 0.32);
    outline: 3px solid rgba(225, 134, 51, 0.6);
    outline-offset: 2px;
}

.golf-floating-help-popup[open] .golf-floating-help-popup__trigger {
    transform: scale(0.7);
}

.golf-floating-help-popup__trigger-ring {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(225, 134, 51, 0.6);
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.golf-floating-help-popup__trigger-icon {
    position: relative;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.golf-floating-help-popup__panel {
    position: absolute;
    right: 30px;
    bottom: 25px;
    width: min(360px, calc(100vw - 32px));
    padding: 22px 22px 22px 22px;
    border-radius: 28px;
    border: 1px solid rgba(65, 84, 100, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 242, 0.98) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 26px 60px rgba(65, 84, 100, 0.18);
    color: #415464;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.92);
    transform-origin: bottom right;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.golf-floating-help-popup[open] .golf-floating-help-popup__panel,
.golf-floating-help-popup:hover .golf-floating-help-popup__panel,
.golf-floating-help-popup:focus-within .golf-floating-help-popup__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.golf-floating-help-popup[open] .golf-floating-help-popup__trigger-ring,
.golf-floating-help-popup:hover .golf-floating-help-popup__trigger-ring,
.golf-floating-help-popup:focus-within .golf-floating-help-popup__trigger-ring {
    transform: scale(1.14);
    opacity: 0.6;
}

.golf-floating-help-popup__eyebrow {
    margin: 0 !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #415464;
}

.golf-floating-help-popup__title {
    margin: 0 0 18px;
    max-width: 240px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    color: #415464;
}

.golf-floating-help-popup__actions {
    display: grid;
    gap: 10px;
}

.golf-floating-help-popup__form-expand > summary {
    list-style: none;
}

.golf-floating-help-popup__form-expand > summary::-webkit-details-marker {
    display: none;
}

.golf-floating-help-popup__form-expand {
    overflow: hidden;
}

.golf-floating-help-popup__action {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
    border: 1px solid rgba(225, 134, 51, 0.18);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.golf-floating-help-popup__action:hover,
.golf-floating-help-popup__action:focus {
    transform: translateY(-2px);
    color: #ffffff;
    outline: 2px solid #e18633;
    outline-offset: 2px;
}

.golf-floating-help-popup__action--phone {
    background: #e18633;
}

.golf-floating-help-popup__action--phone:hover,
.golf-floating-help-popup__action--phone:focus {
    border-color: rgba(225, 134, 51, 0.5);
    background: #d87925;
}

.golf-floating-help-popup__action--contact {
    background: #e18633;
}

.golf-floating-help-popup__action--contact:hover,
.golf-floating-help-popup__action--contact:focus {
    border-color: rgba(225, 134, 51, 0.5);
    background: #d87925;
}

.golf-floating-help-popup__action--phone .golf-floating-help-popup__action-label,
.golf-floating-help-popup__action--phone .golf-floating-help-popup__action-label,
.golf-floating-help-popup__action--phone .golf-floating-help-popup__action-value,
.golf-floating-help-popup__action--contact .golf-floating-help-popup__action-label,
.golf-floating-help-popup__action--contact .golf-floating-help-popup__action-value {
    color: #ffffff;
}

.golf-floating-help-popup__action-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.golf-floating-help-popup__action-value {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    color: #ffffff;
}

.golf-floating-help-popup__form-placeholder {
    position: relative;
    margin-top: 8px;
    padding: 14px 16px;
    border: 1px dashed rgba(225, 134, 51, 0.45);
    border-radius: 14px;
    background: #fff4ea;
    color: #415464;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    filter: blur(1px);
}

.golf-floating-help-popup__form-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -35%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
    pointer-events: none;
    opacity: 0;
}

.golf-floating-help-popup__form-expand[open] .golf-floating-help-popup__form-placeholder {
    animation: golfFormReveal 420ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.golf-floating-help-popup__form-expand[open] .golf-floating-help-popup__form-placeholder::before {
    animation: golfFormShimmer 520ms ease 120ms both;
}

.golf-floating-help-popup__actions:has(.golf-floating-help-popup__form-expand[open]) > .golf-floating-help-popup__action--phone,
.golf-floating-help-popup__actions:has(.golf-floating-help-popup__form-expand[open]) .golf-floating-help-popup__form-expand > summary {
    display: none;
}

.golf-floating-help-popup__actions:has(.golf-floating-help-popup__form-expand[open]) .golf-floating-help-popup__form-placeholder {
    margin-top: 0;
}

@keyframes golfFormReveal {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
        filter: blur(1px);
    }

    65% {
        opacity: 1;
        transform: translateY(-1px) scale(1.01);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes golfFormShimmer {
    0% {
        left: -35%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 115%;
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .golf-floating-help-popup {
        right: 10px;
        bottom: 10px;
        width: 64px;
        height: 64px;
    }

    .golf-floating-help-popup[open] {
        right: -5px;
        bottom: 5px;
    }

    .golf-floating-help-popup__trigger {
        width: 64px;
        height: 64px;
    }

    .golf-floating-help-popup__trigger-icon {
        font-size: 30px;
    }

    .golf-floating-help-popup__panel {
        width: min(320px, calc(100vw - 24px));
        padding: 20px;
        border-radius: 24px;
    }

    .golf-floating-help-popup__title {
        max-width: none;
        font-size: 21px;
    }

    .golf-floating-help-popup__action-value {
        font-size: 16px;
    }
}
