.team-form.flex-middle {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.team-form.flex-middle .wpcf7-form-control-wrap {
    flex: 0 0 70%;
    width: 70%;
}

.team-form.flex-middle input[type="email"] {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.team-form.flex-middle input[type="email"]:focus {
    border-color: #4a90e2;
}

.team-form.flex-middle .octf-btn {
    flex: 0 0 30%;
    width: 30%;
    padding: 14px 20px;
    background: #4a90e2;
    color: white;
    border: 2px solid #4a90e2;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
    white-space: nowrap;
}

.team-form.flex-middle .octf-btn:hover {
    background: #357abd;
    border-color: #357abd;
}

.team-form.flex-middle .octf-btn:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .team-form.flex-middle {
        flex-direction: column;
        gap: 10px;
    }

    .team-form.flex-middle .wpcf7-form-control-wrap,
    .team-form.flex-middle .octf-btn {
        flex: 1 1 100%;
        width: 100% !important;
    }

    .team-form.flex-middle input[type="email"],
    .team-form.flex-middle .octf-btn {
        border-radius: 4px;
        border: 2px solid #ddd;
    }

    .team-form.flex-middle .octf-btn {
        border-color: #4a90e2;
    }
}


.floating-google-badge {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99999;
    background: #fff;
    padding: 4px 6px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
}


        .floating-google-badge img {
            width: 150px;
            height: auto;
            display: block;
        }

#back-to-top.show {
    border-radius: 50px;
    bottom: 20px;
    background-color: #700a0a;
}