.fb-12898027-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    cursor: move;
    user-select: none;
    touch-action: none;
}

.fb-12898027-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #22935F;
}

.fb-12898027-btn:hover {
    transform: scale(1.03);
}

.fb-12898027-btn:active {
    transform: scale(0.98);
}

.fb-12898027-img-wrapper {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fb-12898027-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.fb-12898027-text {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* Modal contact form style */
.fb-12898027-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fb-12898027-modal.fb-active {
    display: flex;
    opacity: 1;
}

.fb-12898027-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.fb-12898027-modal-content {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 10;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.fb-12898027-modal.fb-active .fb-12898027-modal-content {
    transform: translateY(0);
}

.fb-12898027-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.fb-12898027-modal-close:hover {
    color: #000;
}

/* Form layout elements */
.fb-form-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #333333;
    font-weight: 700;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.fb-form-group {
    margin-bottom: 18px;
    text-align: left;
}

.fb-form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333333;
}

.fb-form-group label.required::after {
    content: " *";
    color: #e53e3e;
}

.fb-form-row {
    display: flex;
    gap: 15px;
}

.fb-form-col-4 {
    flex: 0 0 30%;
}

.fb-form-col-8 {
    flex: 1;
}

.fb-form-group input[type="text"],
.fb-form-group input[type="email"],
.fb-form-group input[type="tel"],
.fb-form-group select,
.fb-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.fb-form-group input:focus,
.fb-form-group select:focus,
.fb-form-group textarea:focus {
    border-color: #22935F;
    outline: none;
}

.fb-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.fb-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal !important;
    cursor: pointer;
    font-size: 14px !important;
    color: #333333;
}

.fb-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
}

.fb-form-hint {
    display: block;
    font-size: 11px;
    color: #666666;
    margin-top: 4px;
}

.fb-submit-btn {
    width: 100%;
    background: #22935F;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.fb-submit-btn:hover {
    background: #19734a;
}

.fb-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.fb-form-message.fb-success {
    display: block;
    background-color: #def7ec;
    color: #03543f;
    border: 1px solid #bcf0da;
}

.fb-form-message.fb-error {
    display: block;
    background-color: #fde8e8;
    color: #9b1c1c;
    border: 1px solid #f8b4b4;
}
