.vxr_tpl_footer {
    background: #333;
    color: white;
    padding: 60px 20px 30px;
}

.vxr_tpl_footer_content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.vxr_tpl_footer_section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.vxr_tpl_footer_section p,
.vxr_tpl_footer_section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.vxr_tpl_footer_section a:hover {
    color: #667eea;
}

.vxr_tpl_social_links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.vxr_tpl_social_link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 45px;
    height: 45px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.vxr_tpl_social_link:hover {
    transform: scale(1.1);
    background: #5a6fd8;
}

.vxr_tpl_footer_bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

.vxr_tpl_floating_buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vxr_tpl_floating_btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
}

.vxr_tpl_floating_btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.vxr_tpl_floating_btn_form {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.vxr_tpl_floating_btn_email {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vxr_tpl_floating_btn_form:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a085 100%);
}

.vxr_tpl_floating_btn_email:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4c93 100%);
}

.vxr_tpl_floating_btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.vxr_tpl_floating_btn::after {
    content: '';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0,0,0,0.8);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vxr_tpl_floating_btn:hover::before,
.vxr_tpl_floating_btn:hover::after {
    opacity: 1;
    visibility: visible;
}

.vxr_tpl_form_modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.vxr_tpl_form_modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.vxr_tpl_form_modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.vxr_tpl_form_modal_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.vxr_tpl_close_modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.vxr_tpl_close_modal:hover {
    color: #333;
}

.vxr_tpl_contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vxr_tpl_form_group {
    position: relative;
}

.vxr_tpl_form_input,
.vxr_tpl_form_textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.vxr_tpl_form_input:focus,
.vxr_tpl_form_textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.vxr_tpl_form_textarea {
    min-height: 120px;
    resize: vertical;
}

.vxr_tpl_form_label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.vxr_tpl_form_input:focus + .vxr_tpl_form_label,
.vxr_tpl_form_input:not(:placeholder-shown) + .vxr_tpl_form_label,
.vxr_tpl_form_textarea:focus + .vxr_tpl_form_label,
.vxr_tpl_form_textarea:not(:placeholder-shown) + .vxr_tpl_form_label {
    top: -8px;
    left: 12px;
    font-size: 0.85rem;
    color: #667eea;
}

.vxr_tpl_form_submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.vxr_tpl_form_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .vxr_tpl_footer_content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vxr_tpl_floating_buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .vxr_tpl_floating_btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .vxr_tpl_floating_btn::before {
        right: 65px;
        font-size: 0.8rem;
    }

    .vxr_tpl_floating_btn::after {
        right: 55px;
    }

    .vxr_tpl_form_modal_content {
        padding: 30px;
        margin: 20px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .vxr_tpl_floating_buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .vxr_tpl_floating_btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .vxr_tpl_floating_btn::before {
        display: none;
    }

    .vxr_tpl_floating_btn::after {
        display: none;
    }

    .vxr_tpl_form_modal_content {
        padding: 25px;
        border-radius: 15px;
    }

    .vxr_tpl_form_modal_title {
        font-size: 1.5rem;
    }
}

.ceSection.vxr_tpl_footer.vxr45C06 {
    background-color: rgb(9, 26, 43);
}

.vxr_tpl_footer_content.vxr2C403 {
    grid-template-columns: 1fr 1fr;
    display: grid;
}

.vxrF5365 {
    font-weight: bold;
}

.vxr2BF9E {
    text-wrap-mode: nowrap;
}