.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background-color: var(--gracie-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
    border: none;
    overflow: hidden;
}

.floating-contact-btn:hover {
    transform: translateY(-3px);
    background-color: #cc0000;
}

.floating-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid white;
    border-radius: 50%;
    margin: 2px;
    pointer-events: none;
    display: block;
}

.floating-contact-btn img {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
    filter: brightness(0) invert(1);
}

.floating-contact-text {
    font-size: 12px;
    color: white;
    text-align: center;
    line-height: 1.3;
    font-weight: bold;
    max-width: 90%;
    margin-top: 4px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--e-global-color-7bcd423);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gracie-red);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-popup:hover {
    transform: rotate(90deg);
}

.popup-title {
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 2rem;
    color: var(--e-global-color-text);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--e-global-color-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--e-global-color-a74e69f);
    border-radius: 5px;
    font-family: var(--e-global-typography-text-font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    margin: 0 auto;
    box-sizing: border-box;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gracie-red);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        width: 120px;
        height: 120px;
    }

    .floating-contact-btn img {
        width: 32px;
        height: 32px;
    }
    
    .floating-contact-text {
        font-size: 12px;
    }

    .floating-contact-btn::before {
        margin: 12px;
    }
}

.popup-content {
        padding: 30px;
        width: 95%;
        margin: 0 auto;
    }

    .popup-title {
        font-size: 1.8rem;
        text-align: center;
    }