/* Секция формы */
.contact-form-section {
    position: relative !important;
    overflow: hidden !important;
}

/* Шары через псевдоэлементы секции */
.contact-form-section::before {
    content: '' !important;
    position: absolute !important;
    width: 320px !important;
    height: 320px !important;
    border-radius: 50% !important;
    filter: blur(80px) !important;
    opacity: 0.18 !important;
    background: #bef970 !important;
    left: -80px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.contact-form-section::after {
    content: '' !important;
    position: absolute !important;
    width: 320px !important;
    height: 320px !important;
    border-radius: 50% !important;
    filter: blur(80px) !important;
    opacity: 0.18 !important;
    background: #bef970 !important;
    right: -80px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Градиенты через дочерний элемент .elementor-widget-container */
.contact-form-section .elementor-widget:first-child .elementor-widget-container {
    position: relative !important;
}

.contact-form-section .elementor-widget:first-child .elementor-widget-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 120px !important;
    background: linear-gradient(to bottom, #111111, transparent) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.contact-form-section .elementor-widget:last-child .elementor-widget-container::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 120px !important;
    background: linear-gradient(to top, #111111, transparent) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}