.moonacrid-contact-form-wrapper .contact-form-box {
    border-radius: 16px;
}

.moonacrid-contact-form-wrapper.sidebar .contact-form-box {
    position: sticky;
    top: 100px;
}

.contact-form-box .form-box-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00A651 0%, #0075C9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-box .form-box-subtitle {
    font-size: 13px;
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.form-success {
    background: #10B981;
    color: #fff;
}

.form-error {
    background: #EF4444;
    color: #fff;
}

.moonacrid-contact-form .form-field {
    margin-bottom: 18px;
}

.moonacrid-contact-form .form-field label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #1a2332;
    margin-bottom: 6px;
}

.moonacrid-contact-form .form-field .req {
    color: #EF4444;
    margin-left: 2px;
}

.moonacrid-contact-form .form-control {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #1a2332;
    transition: all 0.3s ease;
    background: #fff;
}

.moonacrid-contact-form .form-control:focus {
    outline: none;
    border-color: #00A651;
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

.moonacrid-contact-form .form-textarea {
    resize: vertical;
    min-height: 90px;
}

.moonacrid-contact-form .form-control::placeholder {
    color: #A0AEC0;
}

.moonacrid-contact-form .form-checkbox {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 20px 0;
}

.moonacrid-contact-form .form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #00A651;
    cursor: pointer;
    flex-shrink: 0;
}

.moonacrid-contact-form .form-checkbox label {
    font-size: 12px;
    color: #4A5568;
    line-height: 1.5;
    font-weight: 500;
    cursor: pointer;
}

.moonacrid-contact-form .form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00A651 0%, #0075C9 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.moonacrid-contact-form .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.moonacrid-contact-form .form-submit:active {
    transform: translateY(0);
}

.moonacrid-contact-form .form-control.input-error {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.moonacrid-contact-form .form-control.input-valid {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

.phone-validation-error {
    color: #EF4444;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .moonacrid-contact-form-wrapper.sidebar .contact-form-box {
        position: static;
    }
}

.consultation-cta-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #00A651 0%, #00A8D8 100%);
    margin-bottom: 30px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 166, 81, 0.3);
    cursor: pointer;
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.92;
    }
}

.consultation-cta-banner:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 166, 81, 0.5);
    animation: none;
}

.consultation-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.consultation-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.8;
    }
}

.consultation-banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.consultation-banner-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.consultation-banner-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.consultation-banner-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-size: 23px;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    backdrop-filter: blur(10px);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
}

.consultation-banner-title {
    font-size: 17px;
    font-weight: 500;
    color: white;
    margin: 0 0 6px 0;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.consultation-banner-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.consultation-banner-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.consultation-cta-banner:hover .consultation-banner-arrow {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.3);
}

.consultation-banner-arrow svg {
    width: 24px;
    height: 24px;
    color: white;
}

@media (max-width: 768px) {
    .consultation-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .consultation-banner-icon {
        width: 50px;
        height: 50px;
    }

    .consultation-banner-icon svg {
        width: 26px;
        height: 26px;
    }

    .consultation-banner-title {
        font-size: 18px;
    }

    .consultation-banner-desc {
        font-size: 13px;
    }

    .consultation-banner-arrow {
        transform: rotate(90deg);
    }

    .consultation-cta-banner:hover .consultation-banner-arrow {
        transform: rotate(90deg) translateX(8px);
    }
}

@media (max-width: 480px) {
    .consultation-banner-title {
        font-size: 16px;
    }

    .consultation-banner-desc {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .consultation-cta-banner,
    .consultation-cta-banner::before,
    .consultation-banner-glow,
    .consultation-banner-badge,
    .consultation-banner-icon {
        animation: none !important;
    }
}